Assuming a MySQL datastore, when would you NOT want to use memcached in a Ruby on Rails app?
|
|
|||||
|
|
|
Memcache is a strong distributed cache, but isn't any faster than local caching for some content. Caching should allow you to avoid bottlenecks, which is usually database requests and network requests. If you can cache your full page locally as HTML because it doesn't change very often (isn't very dynamic), then your web server can serve this up much faster than querying memcache. This is especially true if your memcache server, like most memcached servers, are on seperate machines. Flip side of this is that I will sometimes use memcache locally instead of other caching options because I know someday I will need to move it off to its own server. |
||
|
|
|
The main benefit of memcached is that it is a distributed cache. That means you can generate once, and serve from cache across many servers (this is why memcached was created). All the previous answers seem to ignore this - it makes me wonder if they have ever had to build a highly scalable app (which is exactly what memcached is for)
(My bolding) So the answer is: if your application is only ever likely to be deployed on a single server. If you are ever likely to use more than one server (for scalability and redundancy) memcached is (nearly) always a good idea. |
|||
|
|
|
|
When you want to have fine-grained control about things expiring. From my tests, memcached only seems to have a timing resolution of about a second. EG: if you tell something to expire in 1 second, it could stay around for between 1 and just over 2 seconds. |
||
|
|
|
|
Don't use memcached if your application is able to handle all requests quickly. Adding memcached is extra mental overhead when it comes to coding your app, so don't do it unless you need it. Scaling's "one swell problem to have". |
||||||
|
