public
Description: Extend Rails, ActiveSupport caching to support an :expires_in option.
Homepage:
Clone URL: git://github.com/matthewrudy/expiring_memory_store.git
name age message
file MIT-LICENSE Loading commit data...
file README
file Rakefile
file init.rb
directory lib/
directory test/
README
ExpiringMemoryStore
===================

Expiring MemoryStore is a modification to the default Rails MemoryStore which adds the :expires_in functionality that is 
so useful with Memcache.
Although this increases the memory overhead slightly,
it ensures that caches can be expired easily, without restarting your webserver.

Just add;
  config.cache_store = :expiring_memory_store
to your environment.rb.

Example
=======

  >> Rails.cache.write('are you there?', :im_still_here, :expires_in => 30)
  => :im_still_here

  >> Rails.cache.read('are you there?')
  => :im_still_here

wait 30 seconds

  >> Rails.cache.read('are you there?')
  => nil

WICKED!!!

Copyright (c) 2008 [Matthew Rudy Jacobs], released under the MIT license