jspooner
jspooner

Reputation: 11315

Rails page cache with redis?

Has anyone used redis to store the cached html files created by Rails page caching?

I have multiple servers all storing their cache files on a mounted drive but there are latency problems that can't easily be resolved. I can't store the cache files on each machine because I dont have a way to invalidate cache across machines.

Upvotes: 1

Views: 2402

Answers (1)

James
James

Reputation: 4807

Page caching will always write to the file system. Look into using action caching or fragment caching.

Here's the section on memcached from the Rails guide:

http://guides.rubyonrails.org/caching_with_rails.html#activesupport-cache-memcachestore

You'll need this gem if you want to stick with Redis:

https://github.com/jodosha/redis-store

Upvotes: 1

Related Questions