Questions tagged [spring-data-redis]

Spring Data Redis, part of the larger Spring Data family, provides easy configuration and access to Redis from Spring applications. It offers both low-level and high-level abstractions for interacting with the store, freeing the user from infrastructural concerns.

Spring Data Redis, part of the larger Spring Data family, provides easy configuration and access to Redis from Spring applications. It offers both low-level and high-level abstractions for interacting with the store, freeing the user from infrastructural concerns.

Features

  • Abstraction across multiple Redis drivers/connectors such as Lettuce and Jedis.
  • JDK, String, JSON and Spring Object/XML mapping serializers.
  • Spring cache abstraction for use with Redis.
  • JDK Collection implementation on top of Redis.
  • Pub/Sub integration.
  • Reactive and imperative APIs.

Online Resources:

Version History

1029 questions
-1
votes
1 answer

Redis CRDB Eviction Policy

I have read in the redis documentation that caching eviction policy for CRDB should be set to No Eviction . "Note: Geo-Distributed CRDBs always operate in noeviction…
Gajendra
  • 37
  • 1
  • 9
-1
votes
1 answer

What is the CLI command to view inside of a set data type in redis

I user a CRUDRepository in my spring data redis project to persist a redis hash in my redis cluster. i have rest api written to persist and get thte values of the data. this works fine. however my entity annotated with RedisHash is being saved as a…
user1906450
  • 517
  • 1
  • 6
  • 19
-1
votes
1 answer

Single Object having 2GB size(may be it more in future) to store in Redis Cache

we are planning to implement distributed Cache(Redis Cache) for our application. We have a data and stored it in map with having size around 2GB and it is a single object. Currently it is storing in Context scope similarly we have plenty of objects…
Manohar
  • 19
  • 6
-1
votes
1 answer

Getting performance issue while retrieving data from REDIS CACHE in JAVA

I am having the 250MB data storing into redis Cache as a single hash object. I am using Spring RedisTemplate to read data from redis. But it's taking the the around 30 to 35 secs of time. redisTemplate.opsForHash().put("masterMap","masterMap",…
Manohar
  • 19
  • 6
-1
votes
1 answer

How to set TTL for race conditions in Redis cache

I am using Redis for cache in my application which is configured in spring beans, spring-data-redis 1.7.1, jedis 2.9.0. I would like to know how to set the race condition ttl in the configuration. Please comment if you have any suggestions.
teja
  • 11
  • 1
  • 3
-1
votes
1 answer

Redis sizing for Production

I have few queries regarding Redis Cluster setup: 1.Does redis support cross site replication ? When we start redis cluster,can we decide what will be the slave of each instance. 2.I need to store around 11 billion keys,with full persistance and…
-2
votes
1 answer

how can i modify spring.redis.host config and neednot restart springboot project?

My old config like spring.redis.host=192.168.1.1 Now I want to modify spring.redis.host=192.168.1.2 But need not restart My project, How can I do that?
sean
  • 11
  • 1
1 2 3
68
69