difference between redis and strictredis

Solutions on MaxInterview for difference between redis and strictredis by the best coders in the world

showing results for - "difference between redis and strictredis"
Mohamed
08 Jan 2017
1The Redis class, a subclass of StrictRedis, overrides several other commands to provide backwards compatibility with older versions of redis-py
2
3redis-py exposes two client classes that implement these commands
4The StrictRedis class attempts to adhere to the official command syntax.
5Do you need backwards compatibility? Use Redis. Don't care? Use StrictRedis.
6
7redis-py 3.0 drops support for the legacy "Redis" client class. "StrictRedis" has been renamed to "Redis"
8and an alias named "StrictRedis" is provided so that users previously using "StrictRedis" can continue to run unchanged.
similar questions
queries leading to this page
difference between redis and strictredis