喵喵时光机
可以;如果是指单个缓存存活时间的话有多种方式,我所知的:xxOperations.set(key, value, (long)时间, 时间单位);boundxxOperations.(value,(long)时间, 时间单位);使用RedisConnection通过字节数组处理时同样有setEx和pSetEx等方法:redisConnection.setEx(byte[] key, 时间(秒), byte[] value); redisConnection.pSetEx(byte[] key, 时间(毫秒), byte[] value);同时他们都还提供了expire(byte[] key, long seconds); 来设置时间;RedisConnection还有更多的如pExpire(byte[] key, long millis);等等方法设置key的存活时间