In a word, yes.
Rack::Cache separates cache entries into a MetaStore and an EntityStore.
Using a memory based storage implementation (heap or memcached) for
the MetaStore is strongly advised, while a disk based storage
implementation (file) is often satisfactory for the EntityStore and
uses much less memory.
The following is a suggested configuration of memcached via the dalli gem.
config.cache_store = :dalli_store
config.action_dispatch.rack_cache = {
:metastore => Dalli::Client.new,
:entitystore => URI.encode("file:#{Rails.root}/tmp/cache/rack/body"),
:allow_reload => false
}
An alternative memory store is Redis, which you can configure using @jodosha's redis-store.
Based on the title of your question, people might arrive here looking for a way to chain multiple caching layers in order of lowest-latency.
This functionality is provided by @jch's cascade-store which is another custom rails cache store. Rails example:
config.cache_store = [:cascade_store, :stores => [
[:memory_store, :size => 5.megabytes, :expires_in => 15.minutes],
[:mem_cache_store, 'localhost:11211'],
]]
Rack::Cacheway to do it so maybe Varnish isn't necessary… – Carlo Zottmann Apr 1 '12 at 14:08