Displaying 1 result from an estimated 1 matches for "hash_cache".
2007 Sep 02
5
hash_cache a bogus function that never worked?
Hi,
I''ve been investigating various caching methods provided by Rail. I
first looked at the hash_cache module and function. In testing it, I
noticed it wasn''t actually caching anything. Then looking at the source
code, I noticed that it attempted to hold its cache in a class variable
- which won''t actually be saved from page request to page because of the
way that rails works.
Has...