Relative Content

Tag Archive for redis

How to implement collections in Redis as it works in MongoDB?

We use Redis DB for storing sessions. We change data format of sessions and need to migrate them by a little. As we want to save key format (session id), so the idea was to create a new collection (as in MongoDB) and put new sessions there. But I haven’t found anything similar.

A lot of GET/SET commands in Redis slowlog

I have a redis cluster with 3 master and 3 slave(redis 5.0.8). Redis instances are deployed in Docker or virtual machines. However, when I check the slowlog there are GET/SET commands. The value is not large(only about 10 ~ 1000 bytes).

Is Redis Deprecated and Valkey a Production Ready Drop In Alternative?

Context I have been a long term user of python celery module to implement asynchronous task server in machine learning context, which depends on REDIS as the message broker. But recently I saw some headlines that say REDIS is deprecated Valkey is being proposed by some companies as a replacement Questions Is Valkey production ready […]