jerrett / cache_fu forked from timocratic/cache_fu

Everyone's favorite memcached plugin for ActiveRecord.

This URL has Read+Write access

timocratic (author)
Tue Apr 07 18:49:17 -0700 2009
commit  bbfee8ecbb4f5676f047f5b34c58a12ded13e8d2
tree    41b12907e8aa8f1028d8a5fcd029d62274ddb84f
parent  9dc19a3a593f4ce1b4e221889091cebd773ea5c4
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/ Tue Apr 07 18:49:17 -0700 2009 Rails 2.3 compat - no longer get options ignored [timocratic]
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 ]