Skip to main content
0 votes
0 answers
48 views

Problem statement Connect to Azure managed redis from spring boot (using Jedis/Lettuce) though managed identity where the identity token expires in 24 hours. In my application, the ...
bibhuti.reverside's user avatar
0 votes
0 answers
79 views

I have an application using spring-data-keyvalue. As I understand by default it uses HashMap without persistence. The documentation says I could use redis for that, with jedis (among others). I want ...
Árpád Magosányi's user avatar
1 vote
1 answer
168 views

I have a Java Spring application with a RedisService for interacting with a Redis database. The RedisService constructor takes a JedisPooled object as the constructor dependency for using the Redis ...
user9506231's user avatar
0 votes
1 answer
226 views

I have a spring app deployed to AWS Kubernetes, and an AWS elasticache with transit encryption mode set to required. When the java code below gets executed, it throws an exception Java code: ...
MA1's user avatar
  • 1,096
0 votes
0 answers
34 views

I'm trying to migrate spring-data-redis 1.5.2.RELEASE to 2.3.12.RELEASE, but I'm finding that some methods in RedisCacheConfiguration are not in version 2.3.12.RELEASE I have the method ...
mf117's user avatar
  • 11
0 votes
1 answer
1k views

I have a redis-cluster docker image running locally, and I'm trying to connect to it from the java code, but I'm getting an error. Java code: JedisCluster jedisCluster = new JedisCluster(new ...
MA1's user avatar
  • 1,096
0 votes
0 answers
58 views

I have a java springboot application running in an Amazion ECS container. This application is reading data from Elasticache for Redis OSS using Jedis library. The Elasticache Redis replication group ...
user3001381's user avatar
0 votes
0 answers
18 views

I have JSON structure in REDIS that looks something like: { "name": "value" "subtable": { "sub1":{ "subtime": 123456 } "...
Wayne's user avatar
  • 77
0 votes
1 answer
1k views

I’m experiencing an intermittent issue with my application that uses Jedis version 5.0.2 for Redis connectivity. The (random) error I'm encountering is: Failed to connect to any host resolved for DNS ...
XII's user avatar
  • 608
0 votes
0 answers
103 views

try (Jedis jedis = jedisPool.getResource()) { logger.info("connection established after attempt: " +attempts); return operation.execute(jedis); }catch (JedisException e) { ...
juan's user avatar
  • 1
0 votes
1 answer
259 views

According to this commit, I now need to connect using RedisAutoConfiguration instead of RedisVectorStoreAutoConfiguration and I'm curious about how. commit comment Here is the Redis connection ...
이진성's user avatar
0 votes
1 answer
65 views

The examples use Scala code, but the issue would be the same with Java. Way back in version 2 of Jedis, you could use echo in a pipeline: import redis.clients.jedis._ object Main { def main(args: ...
Amaterasu's user avatar
  • 396
0 votes
1 answer
369 views

I am new to Redis and have a scenario to put data to Redis using Redisson and get using Jedis (and vice versa). The data I am trying to maintain is Map<String, String>. For this I am using HGET ...
rak323sh's user avatar
1 vote
1 answer
125 views

I have a use case to identify expired tokens stored in cache, so I implemented a method in the following way - private Boolean isTokenExpired(long programId,String token,Jwt jwt){ try { if(...
Jayanth Naidu's user avatar
0 votes
2 answers
249 views

Very new to REDIS, and having issues using JSON/Index/Query that is driving me crazy. Example struct public class MyType implements Serializable { { @SerializedName("myval") @Expose ...
Wayne's user avatar
  • 77

15 30 50 per page
1
2 3 4 5
59