2

我正在为我的项目使用 Spring redis 存储库来将 POJO 持久化到 redis 中。以下示例详细说明了我要实现的目标。

@Data
@RedisHash("Example")
public class Example {
    @Id
    private String id;
    private String attributeA;
    private String attirbuteB;

    @TimeToLive(unit = TimeUnit.SECONDS)
    private Long timeToLive;
}

上述 POJO 的存储库如下所示。

public interface ExampleRepository extends CrudRepository<Example, String> {

}

@TimeToLive 在将过期设置为 redis 时效果很好。在我的代码中,我尝试设置 timeToLive = 1200 的值。代码如下...

Example example = new Example();
example.setId("abc");
example.setTimeToLive(1200L);
exampleRepository.save(example);

当我尝试从 redis 检索 POJO 时,我的问题就开始了。

Example example = exampleRepository.findOne(id);
System.out.println(example.getTimeToLive());

上面的代码总是打印 1200 作为输出。从 CLI 中,我可以确认 redis 中存在的对象的 TTL 随着时间的推移而减少。但是,它没有设置为我要检索的 POJO。

为什么我无法检索此 POJO 实例在 redis 中设置的 ttl 的当前值?

有没有使用spring redis存储库实现这一目标的替代方法!

提前致谢!

4

1 回答 1

2

当前不直接支持将生存时间值读回到域对象中。有针对此问题的DATAREDIS-523 。

同时,您可以通过RedisTemplate.getExpire(key, timeUnit)例如检索值。template.getExpire("Example:abc".getBytes(), TimeUnit.SECONDS).

于 2016-06-21T05:35:51.980 回答