Skip to content

Instantly share code, notes, and snippets.

View derylspielman's full-sized avatar

Deryl Spielman derylspielman

View GitHub Profile
@derylspielman
derylspielman / RedisRetryTemplate.java
Last active January 29, 2024 07:31
Retryable Jedis connection for Redis that uses Spring's RetryTemplate.
package com.example.app.session;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.data.redis.core.RedisCallback;
import org.springframework.data.redis.core.RedisTemplate;
import org.springframework.retry.RetryContext;
import org.springframework.retry.support.RetryTemplate;
/**