docker環境でのredisの構築
docker環境でのredisの構築
1.redisミラーの検索
2.redisミラーのダウンロード
3.redisのインストール
4.springboot集積redis,StringRedisTemplate常用方法
1.redisミラーの検索
docker search redis
2.redisミラーのダウンロード
docker pull redis
3.redisのインストール
docker run -di --name=redis -p 6379:6379 redis
4.springboot集積redis,StringRedisTemplate常用方法
stringRedisTemplate.opsForValue().set("test", "100",60*10,TimeUnit.SECONDS);// redis
stringRedisTemplate.opsForValue().get("test")// key val
stringRedisTemplate.boundValueOps("test").increment(-1);//val -1
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.expire("red_123",1000 , TimeUnit.MILLISECONDS);//
stringRedisTemplate.opsForSet().add("red_123", "1","2","3");// key set
stringRedisTemplate.opsForSet().isMember("red_123", "1")// key
stringRedisTemplate.opsForSet().members("red_123");// key set