966aa51a37
touch_all on 10K cards took 6ms in testing
12 lines
212 B
Ruby
12 lines
212 B
Ruby
class Entropy < ApplicationRecord
|
|
belongs_to :container, polymorphic: true
|
|
|
|
after_commit -> { container.cards.touch_all }
|
|
|
|
class << self
|
|
def default
|
|
Account.sole.default_entropy
|
|
end
|
|
end
|
|
end
|