cache_method icon indicating copy to clipboard operation
cache_method copied to clipboard

can't cache different methods in different stores

Open seamusabshere opened this issue 13 years ago • 0 comments

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

seamusabshere avatar Nov 02 '12 22:11 seamusabshere