The cache-money tag has no wiki summary.
4
votes
1answer
476 views
How can I implement write through caching in Rails 3 similar to cache-money?
I recently inherited a Rails 2.3 application that I'm now trying to upgrade to Rails 3. Cache-money is an integral part of the application so I want to make sure we have the same functionality in ...
10
votes
2answers
2k views
cache_money for Rails 3
I've used various forks (mostly the ngmoco fork) of Nick Kallen's excellent cache_money for several Rails 2.3 based project, but we're now making the leap to Rails 3 which, thanks to the introduction ...
0
votes
1answer
229 views
“no block given” errors with cache_money
i've inherited a site that in production is generating dozens of "no block given" exceptions every 5 minutes.
the top of the stack trace is:
...
2
votes
4answers
620 views
cache money ActiveRecord::MissingAttributeError
i keep on getting ActiveRecord::MissingAttributeError errors randomly everywhere in my program. i have passenger (30 instances) running with nginx. i don't have this problem in dev. When i remove ...
0
votes
2answers
112 views
cache_money only writing to memcached on creates and updates, and seemingly never looking in the cache for index/show actions
I seem to be having some extremely odd cache_money interactions.
When I am on the console, and I create a new instance of a class and save it I see the cache misses and cache stores on my memcached ...
1
vote
2answers
423 views
How do I disable cache_money caching for certain ActiveRecord models
I tried doing the def index(*args); end; trick within the models I'd like cache_money to ignore, but to no avail.
2
votes
0answers
192 views
Selectively caching models with cache_money
Instead of doing this in the cache_money.rb initializer
class ActiveRecord::Base
is_cached :repository => $cache
end
I want to be able to selectively cache only certain models (the reason ...
2
votes
5answers
310 views
cache_money 'nil.repository' error
I'm just trying out cache_money gem on an existing app and getting this error:
NoMethodError (You have a nil object when you didn't expect it!
The error occurred while evaluating nil.repository)
I ...
2
votes
2answers
369 views
Getting Started with CacheMoney
I recently installed cache-money. After some difficulties getting memcached and cache-money set up, I thought I had it working. It cached the one query on my login page fine. I login, and go to my ...
4
votes
2answers
719 views
Use cache money only for a single model?
I want to use cache-money but I don't want to start automatically caching everything (I'm working with a large production app, terabytes of data etc). How do I use it for only the models that I ...
1
vote
4answers
1k views
Why am I getting this Cache-money error?
I followed the instructions found on the github page exactly. I would post some of my configuration but it matches what's found here on http://github.com/nkallen/cache-money/tree/master
The error ...