2015-09-28 02:40:27 -04:00
|
|
|
require 'distributed_cache'
|
|
|
|
|
2013-02-05 14:16:51 -05:00
|
|
|
class ApplicationSerializer < ActiveModel::Serializer
|
2013-03-23 11:02:59 -04:00
|
|
|
embed :ids, include: true
|
2015-09-28 02:40:27 -04:00
|
|
|
|
|
|
|
class CachedFragment
|
|
|
|
def initialize(json)
|
|
|
|
@json = json
|
|
|
|
end
|
|
|
|
def as_json(*_args)
|
|
|
|
@json
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def self.expire_cache_fragment!(name)
|
|
|
|
fragment_cache.delete(name)
|
|
|
|
end
|
|
|
|
|
|
|
|
def self.fragment_cache
|
|
|
|
@cache ||= DistributedCache.new("am_serializer_fragment_cache")
|
|
|
|
end
|
|
|
|
|
|
|
|
protected
|
|
|
|
|
|
|
|
def cache_fragment(name)
|
|
|
|
ApplicationSerializer.fragment_cache[name] ||= yield
|
|
|
|
end
|
2019-02-14 18:24:29 -05:00
|
|
|
|
|
|
|
def cache_anon_fragment(name, &blk)
|
|
|
|
if scope.anonymous?
|
|
|
|
cache_fragment(name, &blk)
|
|
|
|
else
|
|
|
|
blk.call
|
|
|
|
end
|
|
|
|
end
|
2013-02-07 10:45:24 -05:00
|
|
|
end
|