public
Description: Everyone's favorite memcached plugin for ActiveRecord.
Homepage: http://errtheblog.com
Clone URL: git://github.com/defunkt/cache_fu.git
defunkt (author)
Mon Feb 09 18:11:06 -0800 2009
commit  41f1ad09c9cb451aa564f913468b9e562dbf2f17
tree    c505be5207f78bd674083e9bd6ec80116f0b8770
parent  505a8324e650fcbc016f920c5dc51b1bfa62296b
name age message
file CHANGELOG Tue Jan 22 16:27:07 -0800 2008 first post [defunkt]
file LICENSE Tue Jan 22 16:27:07 -0800 2008 first post [defunkt]
file README Tue Jan 22 16:27:07 -0800 2008 first post [defunkt]
file Rakefile Tue Jan 22 16:27:07 -0800 2008 first post [defunkt]
directory defaults/ Wed Jul 16 02:24:42 -0700 2008 getting ready for a GitHub pull request... [Peter Vandenberk]
file init.rb Fri May 02 09:28:29 -0700 2008 RubyMemcache error message should not have been... [defunkt]
file install.rb Tue Jan 22 16:27:07 -0800 2008 first post [defunkt]
directory lib/ Loading commit data...
directory tasks/ Wed Jul 16 02:24:42 -0700 2008 getting ready for a GitHub pull request... [Peter Vandenberk]
directory test/ Tue Jan 22 16:27:07 -0800 2008 first post [defunkt]
README
== cache_fu

A rewrite of acts_as_cached.

== Changes from acts_as_cached 1

- You can no longer set a 'ttl' method on a class.  Instead,
  pass :ttl to acts_as_cached:
    >> acts_as_cached :ttl => 15.minutes

- The is_cached? method is aliased as cached?

- set_cache on an instance can take a ttl
    >> @story.set_cache(15.days)


Chris Wanstrath [ chris[at]ozmm[dot]org ]