ActiveSupport::Cache :mem_cache_store options

Cheers,

I just created a patch at

http://rails.lighthouseapp.com/projects/8994-ruby-on-rails/tickets/14-patch-make-the-new-activesupport-cache-mem_cache_store-accept-options

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