spring开机时如何手动向Redis添加数据并获取缓存数据?
How to add data to Redis manually and get cached data in spring boot?
我的要求是在高速缓存中保留一组规则并检索键和值。作为 Redis 的新手,我在 Redis 客户端中创建了一个示例规则,如下所示
这个key和value可以通过Spring数据redis吗?
如果可能怎么办?我浏览了几个教程,我只看到使用 redis 模板设置的值并获得相关值?
谢谢
大孙.
i went through several tutorials i only see set values using redis
template and get the relevant value?
是的,因为我们大多数人都是这样做的:)
我真的很喜欢RedisTemplate
。
正如他们的文档中所说:
Helper class that simplifies Redis data access code. Performs
automatic serialization/deserialization between the given objects and
the underlying binary data in the Redis store.
所以我的建议是,按照我在实施整个缓存服务时所做的操作,检查其中一些教程,因为这会让您的生活更轻松。
我的要求是在高速缓存中保留一组规则并检索键和值。作为 Redis 的新手,我在 Redis 客户端中创建了一个示例规则,如下所示
这个key和value可以通过Spring数据redis吗?
如果可能怎么办?我浏览了几个教程,我只看到使用 redis 模板设置的值并获得相关值?
谢谢 大孙.
i went through several tutorials i only see set values using redis template and get the relevant value?
是的,因为我们大多数人都是这样做的:)
我真的很喜欢RedisTemplate
。
正如他们的文档中所说:
Helper class that simplifies Redis data access code. Performs automatic serialization/deserialization between the given objects and the underlying binary data in the Redis store.
所以我的建议是,按照我在实施整个缓存服务时所做的操作,检查其中一些教程,因为这会让您的生活更轻松。