Magento – Redis version requirement for Magento 2

cachemagento2redis

I see on M2 requirements page that it says:

Magento can utilize the following technologies: Redis version 3.0 for page caching and session storage (the latter supported by Magento version 2.0.6 and later only)

I want to clarify if the can is a must, or I can use Redis 2.8.19, which is the standard EPEL version today. Can I use version 2+ or not?

Best Answer

Both Redis 2.8 and 3.0 is supported by Magento 2

Difference: Redis 3.0 supports up to 64 different databases per instance of the service, while 2.8 allows for only a single database

Reference: http://devdocs.magento.com/guides/v2.0/cloud/project/project-conf-files_services-redis.html

Related Topic