Skip to content

RedisConnectionFactory

RedisConnectionFactory is a component used within the Spring Data Redis framework to manage and construct active connections to a Redis server.^[600-developer__spring__springboot-data-redis.md]

Functionality

The factory acts as an abstraction layer for connection management. It is responsible for creating RedisConnection instances, which represent the actual active link to the Redis database.^[600-developer__spring__springboot-data-redis.md]

  • RedisConnection: Represents the active connection established by the factory.^[600-developer__spring__springboot-data-redis.md]
  • RedisTemplate: A higher-level class for operations that utilizes these connections to execute commands (such as Key Type Operations or Key Bound Operations).^[600-developer__spring__springboot-data-redis.md]

Sources

  • 600-developer__spring__springboot-data-redis.md