|
|
|
|
|
by xutopia
622 days ago
|
|
For caching specifically solid_cache works better for long lived and larger caches than does Redis. If you need short lived and smaller caches Redis will be more performant for you. That said you can probably get away with caching way more with solid_cache and it's highly dependent on what your use cases are. Also a thing to note that your DB backing solid_cache might also be using RAM efficiently, giving you a lot of benefits that Redis did. For new projects I'll be using solid_cache first and adding Redis only on an as-need basis. The cost of Redis is orders of magnitude higher than a DB backed cache. |
|