• RedisTemplate Redis 操作


     

    stringRedisTemplate.opsForValue().set("test", "100",60*10,TimeUnit.SECONDS);//向redis里存入数据和设置缓存时间  

    stringRedisTemplate.boundValueOps("test").increment(-1);//val做-1操作  

    stringRedisTemplate.opsForValue().get("test")//根据key获取缓存中的val  

    stringRedisTemplate.boundValueOps("test").increment(1);//val +1  

    stringRedisTemplate.getExpire("test")//根据key获取过期时间  

    stringRedisTemplate.getExpire("test",TimeUnit.SECONDS)//根据key获取过期时间并换算成指定单位  

    stringRedisTemplate.delete("test");//根据key删除缓存  
    stringRedisTemplate.hasKey("546545");//检查key是否存在,返回boolean值  
    stringRedisTemplate.opsForSet().add("red_123", "1","2","3");//向指定key中存放set集合  
    stringRedisTemplate.expire("red_123",1000 , TimeUnit.MILLISECONDS);//设置过期时间  
    stringRedisTemplate.opsForSet().isMember("red_123", "1")//根据key查看集合中是否存在指定数据  
    stringRedisTemplate.opsForSet().members("red_123");//根据key获取set集合  
     
    因为微信小程序中用到了这个模板,所以我需要检查session是否过期,之前想的是先获取指定单位的时间日期,然后再用当前日期减去指定日期,只要大于0就是没过期,但是这样做没成功。最后找遍了百度,找到了一个
     
    可以通过Key获取有效时间:
     
    1. Long expire = redisTemplate.boundHashOps("red_123").getExpire();  
    2. System.out.println("redis有效时间:"+expire+"S");  
    通过判断有效时间是否大于0 ,就可以判断session是否过期了。
  • 相关阅读:
    Codeforces Round #337 (Div. 2) D. Vika and Segments 线段树 矩阵面积并
    HDU 5787 K-wolf Number 数位DP
    python画图
    python文件操作
    python matplotlib绘图
    沟通
    ipython notebook的使用
    生活
    担心承担责任
    Large-scale Scene Understanding (LSUN)
  • 原文地址:https://www.cnblogs.com/jtlgb/p/8573310.html
Copyright © 2020-2023  润新知