Sha256: f32eeb6de89f53451a997edff6dba32ade0154cc367a2da10806ab1558c86826
Contents?: true
Size: 1.12 KB
Versions: 1
Compression:
Stored size: 1.12 KB
Contents
require "restrict_cache/cacheable/base" require "restrict_cache/cacheable/active_record_cache" require "restrict_cache/cacheable/custom_cache" module RestrictCache class Cacheable module CacheKey ACTIVERECORD = :active_record_cache CUSTOM = :custom_cache ALL = [ACTIVERECORD, CUSTOM] def self.get(content) if defined?(ActiveRecord) && content.class < ActiveRecord::Base return ACTIVERECORD end CUSTOM end end class << self def build_inner_cache(key) const_get(key.to_s.classify, false).new end end CacheKey::ALL.each do |inner_cache_key| define_method inner_cache_key do inner_cache inner_cache_key end end def initialize @cache_collection = {} end def add(content) inner_cache(CacheKey.get(content)).add(content) end def [](key) return nil unless key @cache_collection[key] end def cache_keys CacheKey::ALL end private def inner_cache(key) @cache_collection[key] ||= self.class.build_inner_cache(key) end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
restrict_cache-0.1.0 | lib/restrict_cache/cacheable.rb |