Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

When would you NOT want to use memcached in a Ruby on Rails app?

Assuming a MySQL datastore, when would you NOT want to use memcached in a Ruby on Rails app?

like image 483
Levi Rosol Avatar asked Dec 01 '22 13:12

Levi Rosol


1 Answers

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".

like image 163
Douglas F Shearer Avatar answered Dec 05 '22 03:12

Douglas F Shearer