forked from OpenNeo/impress
ffa73b6b03
Just removing some caching and the expiration of it! There's still more superfluous(?) caching on the item page to audit, but these seem a bit more sensible about avoiding loading extra data.
22 lines
No EOL
397 B
Ruby
22 lines
No EOL
397 B
Ruby
class Item
|
|
class UpdateTask
|
|
extend FragmentExpiration
|
|
|
|
TIMEOUT_IN_SECONDS = 10
|
|
|
|
@queue = :item_update
|
|
|
|
def self.perform(id)
|
|
Timeout::timeout(TIMEOUT_IN_SECONDS) do
|
|
item = Item.find(id)
|
|
expire_cache_for(item)
|
|
end
|
|
end
|
|
|
|
private
|
|
|
|
def self.expire_cache_for(item)
|
|
expire_key_in_all_locales("items/#{item.id}#as_json")
|
|
end
|
|
end
|
|
end |