Cheers,
I just created a patch at
that allows to supply extra options to the mem_cache_store:
ActiveSupport::Cache.lookup_store :mem_cache_store, "localhost"
ActiveSupport::Cache.lookup_store :mem_cache_store, "localhost", '192.168.1.1', :namespace => 'foo'
or
config.action_controller.fragment_cache_store = :mem_cache_store, 'localhost', {:debug => true, :namespace =>'foo'}
Can I get a +1 from anybody interested?
Jonathan