- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一个用例,其中单个条目需要在特定时间从缓存中删除。 TTL 需要设置在键上而不是缓存级别
关注此spring redis documentation我试图实现特定于关键的 TTL,但它不起作用。没有事件发生,我使用了一个监听器来检查,当缓存 ttl 耗尽时只有一个事件发生。
缓存的对象有一个用@TimeToLive
注解的字段来自org.springframework.data.redis.core.TimeToLive
查看文档这应该会在时间用完后触发过期事件
缓存对象
@Data
@NoArgsConstructor
@AllArgsConstructor
public class BrandResponse {
@TimeToLive
private Long ttl;
@NotBlank
private String id;
}
使用的依赖项
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-cache</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-data-redis</artifactId>
<version>2.6.6</version>
</dependency>
<dependency>
<groupId>redis.clients</groupId>
<artifactId>jedis</artifactId>
<version>3.6.3</version>
</dependency>
启用关键空间事件
@SpringBootApplication
@ServletComponentScan
@EnableAsync
@EnableRedisRepositories(enableKeyspaceEvents = RedisKeyValueAdapter.EnableKeyspaceEvents.ON_STARTUP)
public class KikaRestApiApplication {
public static void main(String[] args) {
SpringApplication.run(KikaRestApiApplication.class, args);
}
}
缓存的默认 TTL 为 5 分钟 .entryTtl(Duration.ofMinutes(5))
缓存设置
@Configuration
@EnableCaching
public class RedisCachingConfiguration {
private final KikaApiProperties kikaApiProperties;
@Value("${spring.redis.host}")
private String host;
@Value("${spring.redis.port}")
private Integer port;
public RedisCachingConfiguration(KikaApiProperties kikaApiProperties) {
this.kikaApiProperties = kikaApiProperties;
}
@Bean
public RedisCacheConfiguration cacheConfiguration() {
return RedisCacheConfiguration.defaultCacheConfig()
.entryTtl(Duration.ofMinutes(5))
.disableCachingNullValues()
.serializeValuesWith(
SerializationPair.fromSerializer(new GenericJackson2JsonRedisSerializer()));
}
@Bean
public RedisConnectionFactory redisConnectionFactory() {
RedisStandaloneConfiguration configuration = new RedisStandaloneConfiguration();
configuration.setHostName(host);
configuration.setPort(port);
return new JedisConnectionFactory(configuration);
}
@Bean
public RedisTemplate<String, Idmap> redisTemplate() {
RedisTemplate<String, Idmap> redisTemplate = new RedisTemplate<>();
redisTemplate.setConnectionFactory(redisConnectionFactory());
redisTemplate.setEnableTransactionSupport(true);
return redisTemplate;
}
}
@TimeToLive 是否不能与 spring-redis 缓存一起工作,我是否遗漏了什么?
最佳答案
根据文档
TimeToLive marks a single numeric property on aggregate root to beused for setting expirations in Redis. The annotated propertysupersedes any other timeout configuration.
RedisHash marks Objects as aggregate roots to be stored in a Redishash.
默认的ttl单位是秒。@TimeToLive(unit = TimeUnit.SECONDS)您可以使用其他值,例如 MINUTES。
在 BrandResponse 上使用@RedisHash。一切顺利
下面是我的工作代码
@RedisHash
@Data
@NoArgsConstructor
@AllArgsConstructor
public class BrandResponse {
@TimeToLive(unit = TimeUnit.SECONDS )
private Long ttl;
@NotNull
@Id
private String id;
}
@Repository
public interface BrandRepository extends JpaRepository<BrandResponse, String> {
}
public interface CacheService {
void add(BrandResponse response);
boolean exists(String id);
}
@Service
public class RedisCacheServiceImpl implements CacheService {
@Autowired
private BrandRepository brandRepository;
@Override
public void add(BrandResponse response){
this.brandRepository.save(response);
}
@Override
public boolean exists(String id){
return !this.brandRepository.findById(id).isEmpty();
}
}
@Configuration
@EnableCaching
public class RedisCachingConfiguration {
private String host ="192.168.1.59";
private Integer port = 6379;
@Bean
public RedisCacheConfiguration cacheConfiguration() {
return RedisCacheConfiguration.defaultCacheConfig()
.entryTtl(Duration.ofMinutes(5))
.disableCachingNullValues()
.serializeValuesWith(
RedisSerializationContext.SerializationPair.fromSerializer(new GenericJackson2JsonRedisSerializer()));
}
@Bean
JedisConnectionFactory jedisConnectionFactory() {
JedisConnectionFactory jedisConFactory
= new JedisConnectionFactory();
jedisConFactory.setHostName(host);
jedisConFactory.setPort(port);
return jedisConFactory;
}
@Bean
public RedisTemplate<String, Object> redisTemplate() {
RedisTemplate<String, Object> template = new RedisTemplate<>();
template.setConnectionFactory(jedisConnectionFactory());
return template;
}
}
我使用了两个数据源,一个用于 Redis,另一个用于 db
@SpringBootApplication
@EnableRedisRepositories(enableKeyspaceEvents = RedisKeyValueAdapter.EnableKeyspaceEvents.ON_STARTUP,
basePackages = {"com.c4c.authn.core.repository.redis"})
@EnableJpaRepositories(basePackages = {"com.c4c.authn.core.repository.db"})
public class AuthApplication {
public static void main(String[] args) {
SpringApplication.run(AuthApplication.class, args);
}
}
单元测试
public class RedisCacheServiceImplTest extends BaseServiceTest {
@Autowired
private CacheService cacheService;
@Test
public void test_add_ok() throws InterruptedException {
this.cacheService.add(new BrandResponse(5l, "ID1"));
assertTrue(this.cacheService.exists("ID1"));
Thread.sleep(6000);
assertFalse(this.cacheService.exists("ID1"));
}
}
关于java - 使用 @TimeToLive 为 Redis Spring 缓存设置特定于 key 的 TTL 不会触发失效,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/73275520/
我正在尝试在 Blueprint XML Camel 路由中设置消息过期时间。我想要设置为过期的值保存在消息正文中 (a protobuf )。 这是我的代码:-
我是 Java EE 和 JMS 的新手,正在考虑使用 JMS 进行实现。 考虑以下场景: 场景 用户点击一个 servlet。然后从该 servlet 将消息放入 JMS 服务器/队列。然后将响应发
最近(在一次采访中)我被要求设计 HashMap与每个 key 关联的 TTL。我使用下面给出的类似方法完成了它,但在他看来,这不是一个好方法,因为这需要在整个 map 上进行迭代,如果 map 大小
我想在 RedisHash 中动态设置 timeToLive 值。即来自属性文件。 我知道@RedisHash是一个接口(interface),所有字段都是最终的,我们无法动态赋值。 @TimeToL
我想在 RedisHash 中动态设置 timeToLive 值。即来自属性文件。 我知道@RedisHash是一个接口(interface),所有字段都是最终的,我们无法动态赋值。 @TimeToL
我想了解 timeToLive 属性是如何工作的? 这是当你从池中获取连接时,特意关闭连接并返回到池中的时间间隔? API 我希望使用持久连接的客户端每隔几秒关闭一次,这样对负载均衡器的请求每隔几秒就
如果我在生产者中设置了 TimeToLive,我的订阅者不会收到任何消息。我使用 activeMQ V.5.13.3 作为消息代理。 我的制作人 javax.naming.Context ctx =
我正在尝试在 JmsTemplate 上设置 TTL,但消息永远不会过期。当我使用 ActiveMQ Web 控制台在消息上设置 TTL 时,它会在设置的时间段后过期。 这就是我现在拥有的:
我无法仅通过 Google 找出这个问题。我正在连接到一个非持久 EMS 主题,该主题发布一组数据的更新。如果我跳过一些更新,也没关系,因为接下来的更新无论如何都会覆盖它。 在 EMS 主题上发布的消
我有一个 Spring 3.0.x Web 项目,它向用户显示一个链接页面,但我遇到了一些困惑。目前,我正在使用 EhCache 2.1.0 来缓存我的内容,这些内容都是几乎千载难逢的静态内容。内容本
我有一个 Azure Function,其输出绑定(bind)到 Azure Cosmos DB 以保存项目。我正在尝试在项目级别设置 TimeToLive (我知道 TTL 必须打开才能使容器正常工
我有一个用例,其中单个条目需要在特定时间从缓存中删除。 TTL 需要设置在键上而不是缓存级别 关注此spring redis documentation我试图实现特定于关键的 TTL,但它不起作用。没
我是一名优秀的程序员,十分优秀!