问题是这样的: 本人在 springboot 项目中加入了 redis,并且能够存取 redis 中的数据。 我设置了 300s 的有效时间,我一直用 redis-client 刷新数据的有效时间, 但是它时间还没到数据就消失了,报的错误 key not exist: 18428308415@163.com
application.yml 中配置了 host、port、password 代码是这样的
import org.springframework.cache.CacheManager;
import org.springframework.cache.annotation.EnableCaching;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
import org.springframework.data.redis.cache.RedisCacheManager;
import org.springframework.data.redis.connection.RedisConnectionFactory;
import org.springframework.data.redis.core.RedisTemplate;
import org.springframework.data.redis.serializer.RedisSerializer;
import org.springframework.data.redis.serializer.StringRedisSerializer;
@Configuration
@EnableCaching
public class RedisCacheConfig {
@Bean
public CacheManager cacheManager(RedisTemplate<?, ?> redisTemplate){
CacheManager cacheManager = new RedisCacheManager(redisTemplate);
return cacheManager;
}
@Bean
public RedisTemplate<String, String> redisTemplate(RedisConnectionFactory factory){
RedisTemplate<String, String> redisTemplate = new RedisTemplate<String,String>();
redisTemplate.setConnectionFactory(factory);
// key 序列化方式;(不然会出现乱码;),但是如果方法上有 Long 等非 String 类型的话,会报类型转换错误;
// 所以在没有自己定义 key 生成策略的时候,以下这个代码建议不要这么写,可以不配置或者自己实现 ObjectRedisSerializer
// 或者 JdkSerializationRedisSerializer 序列化方式;
RedisSerializer<String> redisSerializer = new StringRedisSerializer();// Long 类型不可以会出现异常信息;
redisTemplate.setKeySerializer(redisSerializer);
redisTemplate.setHashKeySerializer(redisSerializer);
return redisTemplate;
}
}
存入数据:
redisTemplate.opsForValue().set(express, captcha, 300, TimeUnit.SECONDS);
取出数据:
localCaptcha = redisTemplate.opsForValue().get(key);
这是一个专为移动设备优化的页面(即为了让你能够在 Google 搜索结果里秒开这个页面),如果你希望参与 V2EX 社区的讨论,你可以继续到 V2EX 上打开本讨论主题的完整版本。
V2EX 是创意工作者们的社区,是一个分享自己正在做的有趣事物、交流想法,可以遇见新朋友甚至新机会的地方。
V2EX is a community of developers, designers and creative people.