colinmollenhour / Cm_Cache_Backend_Redis

A Zend_Cache backend for Redis with full support for tags (works great with Magento)
Other
390 stars 142 forks source link

Is it safe to have a single redis server handling cache, FPC and sessions? #147

Closed tylers-username closed 4 years ago

tylers-username commented 4 years ago

Curious if we'd expect to run into connection limitations or if Magento's "Flush Cache Storage" and "Flush Magento Cache" execute a flushall

colinmollenhour commented 4 years ago

Main consideration is segmenting your storage so that one of the three cannot fill up your storage crippling the other two. In short, don't do it. Esp using Docker it is so easy to setup separate instances. There are no good reasons to do it and many reasons not to.