RedisTemplate常用集合使用说明-opsForValue(二)
生活随笔
收集整理的這篇文章主要介紹了
RedisTemplate常用集合使用说明-opsForValue(二)
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
? 基礎配置介紹已經在前面的《RedisTemplate常用集合使用說明(一)》中已經介紹了,現在我們直接介紹opsForValue()方法的使用:
1、set(K key, V value)
? 新增一個字符串類型的值,key是鍵,value是值。
redisTemplate.opsForValue().set("stringValue","bbb");2、get(Object key)
獲取key鍵對應的值。
String stringValue = redisTemplate.opsForValue().get("stringValue")+""; System.out.println("通過get(Object key)方法獲取set(K key, V value)方法新增的字符串值:" + stringValue);3、append(K key, String value)
在原有的值基礎上新增字符串到末尾。
redisTemplate.opsForValue().append("stringValue","aaa"); String stringValueAppend = redisTemplate.opsForValue().get("stringValue")+""; System.out.println("通過append(K key, String value)方法修改后的字符串:"+stringValueAppend);4、get(K key, long start, long end)
截取key鍵對應值得字符串,從開始下標位置開始到結束下標的位置(包含結束下標)的字符串。
String cutString = redisTemplate.opsForValue().get("stringValue",0,3); System.out.println("通過get(K key, long start, long end)方法獲取截取的字符串:"+cutString);5、getAndSet(K key, V value)
獲取原來key鍵對應的值并重新賦新值。
String oldAndNewStringValue = redisTemplate.opsForValue().getAndSet("stringValue","ccc")+""; System.out.print("通過getAndSet(K key, V value)方法獲取原來的" + oldAndNewStringValue + ","); String newStringValue = redisTemplate.opsForValue().get("stringValue")+""; System.out.println("修改過后的值:"+newStringValue);6、setBit(K key, long offset, boolean value)
key鍵對應的值value對應的ascii碼,在offset的位置(從左向右數)變為value。
redisTemplate.opsForValue().setBit("stringValue",1,false); newStringValue = redisTemplate.opsForValue().get("stringValue")+""; System.out.println("通過setBit(K key,long offset,boolean value)方法修改過后的值:"+newStringValue);7、getBit(K key, long offset)
判斷指定的位置ASCII碼的bit位是否為1。
boolean bitBoolean = redisTemplate.opsForValue().getBit("stringValue",1); System.out.println("通過getBit(K key,long offset)方法判斷指定bit位的值是:" + bitBoolean);8、size(K key)
獲取指定字符串的長度。
Long stringValueLength = redisTemplate.opsForValue().size("stringValue"); System.out.println("通過size(K key)方法獲取字符串的長度:"+stringValueLength);9、increment(K key, double delta)
以增量的方式將double值存儲在變量中。
double stringValueDouble = redisTemplate.opsForValue().increment("doubleValue",5); System.out.println("通過increment(K key, double delta)方法以增量方式存儲double值:" + stringValueDouble);10、increment(K key, long delta)
以增量的方式將long值存儲在變量中。
double stringValueLong = redisTemplate.opsForValue().increment("longValue",6); System.out.println("通過increment(K key, long delta)方法以增量方式存儲long值:" + stringValueLong);11、setIfAbsent(K key, V value)
如果鍵不存在則新增,存在則不改變已經有的值。
boolean absentBoolean = redisTemplate.opsForValue().setIfAbsent("absentValue","fff"); System.out.println("通過setIfAbsent(K key, V value)方法判斷變量值absentValue是否存在:" + absentBoolean); if(absentBoolean){String absentValue = redisTemplate.opsForValue().get("absentValue")+"";System.out.print(",不存在,則新增后的值是:"+absentValue);boolean existBoolean = redisTemplate.opsForValue().setIfAbsent("absentValue","eee");System.out.print(",再次調用setIfAbsent(K key, V value)判斷absentValue是否存在并重新賦值:" + existBoolean);if(!existBoolean){absentValue = redisTemplate.opsForValue().get("absentValue")+"";System.out.print("如果存在,則重新賦值后的absentValue變量的值是:" + absentValue);} }12、set(K key, V value, long timeout, TimeUnit unit)
? 設置變量值的過期時間。
redisTemplate.opsForValue().set("timeOutValue","timeOut",5,TimeUnit.SECONDS); String timeOutValue = redisTemplate.opsForValue().get("timeOutValue")+""; System.out.println("通過set(K key, V value, long timeout, TimeUnit unit)方法設置過期時間,過期之前獲取的數據:"+timeOutValue); Thread.sleep(5*1000); timeOutValue = redisTemplate.opsForValue().get("timeOutValue")+""; System.out.print(",等待10s過后,獲取的值:"+timeOutValue);13、set(K key, V value, long offset)
覆蓋從指定位置開始的值。
redisTemplate.opsForValue().set("absentValue","dd",1); String overrideString = redisTemplate.opsForValue().get("absentValue")+""; System.out.println("通過set(K key, V value, long offset)方法覆蓋部分的值:"+overrideString);14、multiSet(Map<? extends K,? extends V> map)
設置map集合到redis。
Map valueMap = new HashMap(); valueMap.put("valueMap1","map1"); valueMap.put("valueMap2","map2"); valueMap.put("valueMap3","map3"); redisTemplate.opsForValue().multiSet(valueMap);15、multiGet(Collection keys)
根據集合取出對應的value值。
//根據List集合取出對應的value值 List paraList = new ArrayList(); paraList.add("valueMap1"); paraList.add("valueMap2"); paraList.add("valueMap3"); List<String> valueList = redisTemplate.opsForValue().multiGet(paraList); for (String value : valueList){System.out.println("通過multiGet(Collection<K> keys)方法獲取map值:" + value); }16、multiSetIfAbsent(Map<? extends K,? extends V> map)
如果對應的map集合名稱不存在,則添加,如果存在則不做修改。
Map valueMap = new HashMap(); valueMap.put("valueMap1","map1"); valueMap.put("valueMap2","map2"); valueMap.put("valueMap3","map3"); redisTemplate.opsForValue().multiSetIfAbsent(valueMap);在這里就介紹完了opsForValue()方法的使用,具體代碼將在最后的一篇文章里給出。
總結
以上是生活随笔為你收集整理的RedisTemplate常用集合使用说明-opsForValue(二)的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: .net随笔-vb.net 剪粘板(1)
- 下一篇: .net随笔-vb.net Accord