cache_method
cache_method copied to clipboard
can't cache different methods in different stores
it would be nice to cache different methods in different places:
cache_method :foo, storage: :redis1
cache_method :bar, storage: :memcached2
which you would have set up like
CacheMethod.config.storage[:redis1] = Redis.new
CacheMethod.config.storage[:memcached2] = Memcached.new