skip to Main Content

A simple question about using Redis as a persistent database (not in-memory):

Can I directly query the Redis database from my spring boot application (just like with MySQL or Oracle db) or data should always be loaded in-memory first and requests are to be executed against the in-memory data?

Thanks.

2

Answers


  1. Redis is an in-memory database which you can treat like any other external dependency you may have in your application. Compared with the other databases you mentioned, it does not offer the ability to use SQL to query it, so you must rely on its own commands, which are very specific.

    There are some Java clients you can use to interact with Redis, including Lettuce and Jedis. The commands you send to Redis are executed against the data that Redis itself keep in its own memory.

    Login or Signup to reply.
  2. When you query data from Redis it does not load that data in memory at that point. Redis is an in-memory database, meaning it always keeps all the data in it’s memory, and when you send the query to redis, it processes it against the data that is already in memory.

    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search