Tagged Questions
The cache-money tag has no wiki summary.
9
votes
2answers
1k 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 ...
4
votes
1answer
215 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 ...
4
votes
2answers
642 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 ...
2
votes
3answers
525 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 ...
2
votes
5answers
286 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
342 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 ...
1
vote
2answers
368 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.
1
vote
1answer
171 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 ...
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 ...
0
votes
0answers
73 views
how to enable local caching in ngmoco-cache-money
I'm using ngmoco-cache-money (https://github.com/ngmoco/cache-money) in Rails 2.3.11 with the memcache gem (https://github.com/ninjudd/memcache).
According to the readme, one can enable local caching ...
0
votes
1answer
120 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:
...
0
votes
2answers
102 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 ...