yahoo/redislite

[Question]: Compatibility with Redis

prologic opened this issue · 4 comments

How compatible is redislite with Redis itself and it's API(s)?

Could redisco be easily integrated with both redislite and redis proper and interchangably swapped?

Redislite contains an actual redis server so it is 100% compatible. Some of the base examples in the documentation cover using features such as replication.

Redislite's Redis and StrictRedis classes are extended versions of the redis-py classes by the same name.

Looking at the code for redisco you should be able to pass a redislite object to the container instead of a redis-py connection and it would just work.

I just submitted a pull request that would add support for using redislite if it's installed.

kiddouk/redisco#43

Oh sweet; you guys rock :)