|
module CacheClassMethods |
|
|
|
def has_serializer |
|
if self.instance_eval "Object.const_defined? #{self.class.name}Serializer.to_s" |
|
self.instance_eval "#{self.class.name}Serializer" |
|
end |
|
end |
|
|
|
def hash_key(source = nil) |
|
"#{self.class.name.to_s.downcase}:#{source.to_s.downcase}" |
|
end |
|
|
|
def self.included(base) |
|
base.extend(ClassMethods) |
|
end |
|
|
|
module ClassMethods |
|
|
|
# Set model to cache itself |
|
# |
|
# Sane defaults set for all options |
|
# |
|
# @param [Hash] options additional options for caching |
|
# |
|
def cache_self(options = {}) |
|
prefix = options[:prefix] |
|
key = options[:key] |
|
use_serializer = (options[:serializer] != false) |
|
|
|
define_method("as_serialized") { |
|
serializer = options[:serializer] || self.has_serializer |
|
use_serializer && (serializer != nil) ? serializer.new(self) : self |
|
} |
|
|
|
define_method("cache_key") { |
|
key ? (self.send key) : id.to_s |
|
} |
|
|
|
define_method("cache_name") { |
|
if prefix.is_a? Symbol |
|
return "#{self.send prefix}" |
|
end |
|
"#{ self.class.name.to_s.downcase}s" |
|
} |
|
|
|
define_method("cache_record") { |
|
HashCache.set "#{self.cache_name}", "#{self.cache_key}", self.as_serialized.serializable_hash.to_json |
|
} |
|
|
|
define_method("cached?") { |
|
HashCache.exists("#{self.cache_name}", "#{self.cache_key}") |
|
} |
|
|
|
define_method("get_cached_record") { |
|
begin |
|
JSON.parse(HashCache.get "#{self.cache_name}", "#{self.cache_key}") |
|
rescue |
|
self.cache_record |
|
return JSON.parse(HashCache.get "#{self.cache_name}", "#{self.cache_key}") |
|
end |
|
} |
|
|
|
define_method("bust_cache") do |
|
HashCache.del "#{self.cache_name}", "#{self.cache_key}" |
|
end |
|
|
|
# [:bust_cache, :cache_record].each { |method| self.instance_eval { private method }} |
|
|
|
self.after_save :cache_record |
|
self.after_destroy :bust_cached |
|
end |
|
|
|
# Cache a models collection |
|
# |
|
# Sane defaults set for all options |
|
# |
|
# @param [Symbol] source the method called to retrieve data |
|
# @param [Hash] options additional options for caching |
|
# |
|
def cache_collection(source, options = {}) |
|
symbol = options[:as] || "#{source.to_s.pluralize.singularize}_list" |
|
use_serializer = (options[:serializer] != false) |
|
serializer = options[:serializer] |
|
|
|
define_method(symbol.to_sym) { |
|
data = HashCache.get self.hash_key(source), id |
|
JSON.parse(data) if data |
|
} |
|
|
|
define_method("#{symbol.to_s}_set") do |
|
raw = self.send source |
|
data = [] |
|
|
|
if use_serializer && (serializer != nil) |
|
raw.each_with_index.map{ |d,i| data[i] = serializer.new(d) } |
|
else |
|
data = raw |
|
end |
|
|
|
HashCache.set self.hash_key(source), id, data.serializable_hash.to_json |
|
end |
|
|
|
define_method("bust_#{symbol.to_s}_cache") do |
|
HashCache.del self.hash_key(source), id |
|
end |
|
|
|
define_method("#{symbol.to_s}_count") { HashCache.count self.hash_key(source) } |
|
end |
|
end |
|
|
|
|
|
end |