Pregunta

I came across with this article https://devcenter.heroku.com/articles/memcachier

I just want to ask what's the main advantage of storing the cache in memcachier.
What's the advantage of using other service for caching compared to just caching on server itself?

Does it have any particular advantage when caching at low level in Rails??

¿Fue útil?

Solución

I see some advantages:

  • Imagine you have multiple servers and all servers should use the same cache.
  • You do not want to have the cache on the same server than the webserver.
  • Or you do not want to maintain a memcached (or something like that) installation yourself.
Licenciado bajo: CC-BY-SA con atribución
No afiliado a StackOverflow
scroll top