redis高級使用

Redis經常使用的數據類型:
 String
 
Hash
 
 List
 
 Set
 
 zSet
 
 Sorted set
 
String類型
判斷是否有key所對應的值,有則返回true,沒有則返回false
redisTemplate.hasKey(key)

有則取出key值所對應的值
redisTemplate.opsForValue().get(key)

刪除單個key值
redisTemplate.delete(key)

批量刪除key
redisTemplate.delete(keys) //其中keys:Collection<K> keys

將當前傳入的key值序列化爲byte[]類型
redisTemplate.dump(key)

設置過時時間
public Boolean expire(String key, long timeout, TimeUnit unit) {    return redisTemplate.expire(key, timeout, unit); }
 public Boolean expireAt(String key, Date date) {    return redisTemplate.expireAt(key, date);  }
查找匹配的key值,返回一個Set集合類型
public Set<String> getPatternKey(String pattern) {    return redisTemplate.keys(pattern);}
修改redis中key的名稱
 public void renameKey(String oldKey, String newKey) {    redisTemplate.rename(oldKey, newKey);}
返回傳入key所存儲的值的類型
public DataType getKeyType(String key) {    return redisTemplate.type(key);}
若是舊值存在時,將舊值改成新值
public Boolean renameOldKeyIfAbsent(String oldKey, String newKey) {    return redisTemplate.renameIfAbsent(oldKey, newKey);}
從redis中隨機取出一個key
redisTemplate.randomKey()

返回當前key所對應的剩餘過時時間
 public Long getExpire(String key) {    return redisTemplate.getExpire(key);}
返回剩餘過時時間而且指定時間單位
public Long getExpire(String key, TimeUnit unit) {    return redisTemplate.getExpire(key, unit);}
將key持久化保存
public Boolean persistKey(String key) {    return redisTemplate.persist(key);}
將當前數據庫的key移動到指定redis中數據庫當中
public Boolean moveToDbIndex(String key, int dbIndex) {    return redisTemplate.move(key, dbIndex);}
設置當前的key以及value值
redisTemplate.opsForValue().set(key, value)

設置當前的key以及value值而且設置過時時間
redisTemplate.opsForValue().set(key, value, timeout, unit)

返回key中字符串的子字符
public String getCharacterRange(String key, long start, long end) {    return redisTemplate.opsForValue().get(key, start, end);}
將舊的key設置爲value,而且返回舊的key
public String setKeyAsValue(String key, String value) {    return redisTemplate.opsForValue().getAndSet(key, value);}
批量獲取值
 public List<String> multiGet(Collection<String> keys) {    return redisTemplate.opsForValue().multiGet(keys); }
在原有的值基礎上新增字符串到末尾
redisTemplate.opsForValue().append(key, value)

以增量的方式將double值存儲在變量中
 public Double incrByDouble(String key, double increment) {    return redisTemplate.opsForValue().increment(key, increment); }
經過increment(K key, long delta)方法以增量方式存儲long值(正值則自增,負值則自減)
public Long incrBy(String key, long increment) {    return redisTemplate.opsForValue().increment(key, increment);}
若是對應的map集合名稱不存在,則添加不然不作修改
Map valueMap = new HashMap();  valueMap.put("valueMap1","map1");  valueMap.put("valueMap2","map2");  valueMap.put("valueMap3","map3");  redisTemplate.opsForValue().multiSetIfAbsent(valueMap);
設置map集合到redis
Map valueMap = new HashMap();  valueMap.put("valueMap1","map1");  valueMap.put("valueMap2","map2");  valueMap.put("valueMap3","map3");  redisTemplate.opsForValue().multiSet(valueMap); 
獲取字符串的長度
redisTemplate.opsForValue().size(key)

用 value 參數覆寫給定 key 所儲存的字符串值,從偏移量 offset 開始
redisTemplate.opsForValue().set(key, value, offset)
從新設置key對應的值,若是存在返回false,不然返回true
redisTemplate.opsForValue().setIfAbsent(key, value)
將值 value 關聯到 key,並將 key 的過時時間設爲 timeout
redisTemplate.opsForValue().set(key, value, timeout, unit)

將二進制第offset位值變爲value
redisTemplate.opsForValue().setBit(key, offset, value)
對key所儲存的字符串值,獲取指定偏移量上的位(bit)
redisTemplate.opsForValue().getBit(key, offset)
Hash類型
Redis hash 是一個string類型的field和value的映射表,hash特別適合用於存儲對象。
Redis 中每一個 hash 能夠存儲 2^32 - 1 鍵值對(40多億)。
獲取變量中的指定map鍵是否有值,若是存在該map鍵則獲取值,沒有則返回null。
redisTemplate.opsForHash().get(key, field)
獲取變量中的鍵值對
public Map<Object, Object> hGetAll(String key) {    return redisTemplate.opsForHash().entries(key);}
新增hashMap值
redisTemplate.opsForHash().put(key, hashKey, value)

以map集合的形式添加鍵值對
public void hPutAll(String key, Map<String, String> maps) {    redisTemplate.opsForHash().putAll(key, maps);}
僅當hashKey不存在時才設置
public Boolean hashPutIfAbsent(String key, String hashKey, String value) {    return redisTemplate.opsForHash().putIfAbsent(key, hashKey, value);}
刪除一個或者多個hash表字段
public Long hashDelete(String key, Object... fields) {    return redisTemplate.opsForHash().delete(key, fields);}
查看hash表中指定字段是否存在
public boolean hashExists(String key, String field) {    return redisTemplate.opsForHash().hasKey(key, field);}
給哈希表key中的指定字段的整數值加上增量increment
public Long hashIncrBy(String key, Object field, long increment) {    return redisTemplate.opsForHash().increment(key, field, increment);}
 public Double hIncrByDouble(String key, Object field, double delta) {    return redisTemplate.opsForHash().increment(key, field, delta);}
獲取全部hash表中字段
redisTemplate.opsForHash().keys(key)
獲取hash表中字段的數量
redisTemplate.opsForHash().size(key)

獲取hash表中存在的全部的值
public List<Object> hValues(String key) {    return redisTemplate.opsForHash().values(key);}
匹配獲取鍵值對,ScanOptions.NONE爲獲取所有鍵對
public Cursor<Entry<Object, Object>> hashScan(String key, ScanOptions options) {    return redisTemplate.opsForHash().scan(key, options);}
List類型

經過索引獲取列表中的元素
redisTemplate.opsForList().index(key, index)

獲取列表指定範圍內的元素(start開始位置, 0是開始位置,end 結束位置, -1返回全部)
redisTemplate.opsForList().range(key, start, end)
存儲在list的頭部,即添加一個就把它放在最前面的索引處
redisTemplate.opsForList().leftPush(key, value)
把多個值存入List中(value能夠是多個值,也能夠是一個Collection value)
redisTemplate.opsForList().leftPushAll(key, value)
List存在的時候再加入
redisTemplate.opsForList().leftPushIfPresent(key, value)
若是pivot處值存在則在pivot前面添加
redisTemplate.opsForList().leftPush(key, pivot, value)
按照先進先出的順序來添加(value能夠是多個值,或者是Collection var2)
redisTemplate.opsForList().rightPush(key, value)
redisTemplate.opsForList().rightPushAll(key, value)
在pivot元素的右邊添加值
redisTemplate.opsForList().rightPush(key, pivot, value)
設置指定索引處元素的值
redisTemplate.opsForList().set(key, index, value)
移除並獲取列表中第一個元素(若是列表沒有元素會阻塞列表直到等待超時或發現可彈出元素爲止)
redisTemplate.opsForList().leftPop(key)
redisTemplate.opsForList().leftPop(key, timeout, unit)
移除並獲取列表最後一個元素
redisTemplate.opsForList().rightPop(key)
redisTemplate.opsForList().rightPop(key, timeout, unit)
從一個隊列的右邊彈出一個元素並將這個元素放入另外一個指定隊列的最左邊
redisTemplate.opsForList().rightPopAndLeftPush(sourceKey, destinationKey)
redisTemplate.opsForList().rightPopAndLeftPush(sourceKey, destinationKey, timeout, unit)
刪除集合中值等於value的元素(index=0, 刪除全部值等於value的元素; index>0, 從頭部開始刪除第一個值等於value的元素; index<0, 從尾部開始刪除第一個值等於value的元素)
redisTemplate.opsForList().remove(key, index, value)
將List列表進行剪裁
redisTemplate.opsForList().trim(key, start, end)
獲取當前key的List列表長度
redisTemplate.opsForList().size(key)
Set類型

添加元素
redisTemplate.opsForSet().add(key, values)
移除元素(單個值、多個值)
redisTemplate.opsForSet().remove(key, values)
刪除而且返回一個隨機的元素
redisTemplate.opsForSet().pop(key)
獲取集合的大小
redisTemplate.opsForSet().size(key)
判斷集合是否包含value
redisTemplate.opsForSet().isMember(key, value)
獲取兩個集合的交集(key對應的無序集合與otherKey對應的無序集合求交集)
redisTemplate.opsForSet().intersect(key, otherKey)
獲取多個集合的交集(Collection var2)
redisTemplate.opsForSet().intersect(key, otherKeys)
key集合與otherKey集合的交集存儲到destKey集合中(其中otherKey能夠爲單個值或者集合)
redisTemplate.opsForSet().intersectAndStore(key, otherKey, destKey)
key集合與多個集合的交集存儲到destKey無序集合中
redisTemplate.opsForSet().intersectAndStore(key, otherKeys, destKey)
獲取兩個或者多個集合的並集(otherKeys能夠爲單個值或者是集合)
redisTemplate.opsForSet().union(key, otherKeys)
key集合與otherKey集合的並集存儲到destKey中(otherKeys能夠爲單個值或者是集合)
redisTemplate.opsForSet().unionAndStore(key, otherKey, destKey)
獲取兩個或者多個集合的差集(otherKeys能夠爲單個值或者是集合)
redisTemplate.opsForSet().difference(key, otherKeys)
差集存儲到destKey中(otherKeys能夠爲單個值或者集合)
redisTemplate.opsForSet().differenceAndStore(key, otherKey, destKey)
隨機獲取集合中的一個元素
redisTemplate.opsForSet().randomMember(key)
獲取集合中的全部元素
redisTemplate.opsForSet().members(key)
隨機獲取集合中count個元素
redisTemplate.opsForSet().randomMembers(key, count)
獲取多個key無序集合中的元素(去重),count表示個數
redisTemplate.opsForSet().distinctRandomMembers(key, count)
遍歷set相似於Interator(ScanOptions.NONE爲顯示全部的)
redisTemplate.opsForSet().scan(key, options)
zSet類型

ZSetOperations提供了一系列方法對有序集合進行操做
添加元素(有序集合是按照元素的score值由小到大進行排列)
redisTemplate.opsForZSet().add(key, value, score)
刪除對應的value,value能夠爲多個值
redisTemplate.opsForZSet().remove(key, values)
增長元素的score值,並返回增長後的值
redisTemplate.opsForZSet().incrementScore(key, value, delta)
返回元素在集合的排名,有序集合是按照元素的score值由小到大排列
redisTemplate.opsForZSet().rank(key, value)
返回元素在集合的排名,按元素的score值由大到小排列
redisTemplate.opsForZSet().reverseRank(key, value)
獲取集合中給定區間的元素(start 開始位置,end 結束位置, -1查詢全部)
redisTemplate.opsForZSet().reverseRangeWithScores(key, start,end)
按照Score值查詢集合中的元素,結果從小到大排序
redisTemplate.opsForZSet().reverseRangeByScore(key, min, max)
redisTemplate.opsForZSet().reverseRangeByScoreWithScores(key, min, max)//返回值爲:Set<ZSetOperations.TypedTuple<V>>
從高到低的排序集中獲取分數在最小和最大值之間的元素
redisTemplate.opsForZSet().reverseRangeByScore(key, min, max, start, end)
根據score值獲取集合元素數量
redisTemplate.opsForZSet().count(key, min, max)
獲取集合的大小
redisTemplate.opsForZSet().size(key)
redisTemplate.opsForZSet().zCard(key)
獲取集合中key、value元素對應的score值
redisTemplate.opsForZSet().score(key, value)
移除指定索引位置處的成員
redisTemplate.opsForZSet().removeRange(key, start, end)
移除指定score範圍的集合成員
redisTemplate.opsForZSet().removeRangeByScore(key, min, max)
獲取key和otherKey的並集並存儲在destKey中(其中otherKeys能夠爲單個字符串或者字符串集合)
redisTemplate.opsForZSet().unionAndStore(key, otherKey, destKey)
獲取key和otherKey的交集並存儲在destKey中(其中otherKeys能夠爲單個字符串或者字符串集合)
redisTemplate.opsForZSet().intersectAndStore(key, otherKey, destKey)
遍歷集合(和iterator如出一轍)
Cursor<TypedTuple<Object>> scan = opsForZSet.scan("test3", ScanOptions.NONE);        while (scan.hasNext()){            ZSetOperations.TypedTuple<Object> item = scan.next();            System.out.println(item.getValue() + ":" + item.getScore());        }
相關文章
相關標籤/搜索