RedisTemplate之opsForValue使用說明


RedisTemplate之opsForValue使用說明

轉載鏈接出自: https://blog.csdn.net/qq_25135655/article/details/80357137

Redis中opsForValue()方法的使用介紹:

1、set(K key, V value)

  新增一個字符串類型的值,key是鍵,value是值。

redisTemplate.opsForValue().set("stringValue","bbb");  

2、get(Object key)

  獲取key鍵對應的值。

String stringValue = redisTemplate.opsForValue().get("key")

3、append(K key, String value)

在原有的值基礎上新增字符串到末尾。

  1.  
    redisTemplate.opsForValue().append( "key", "appendValue");
  2.  
    String stringValueAppend = redisTemplate.opsForValue().get( "key");
  3.  
    System.out.println( "通過append(K key, String value)方法修改后的字符串:"+stringValueAppend);  

4、get(K key, long start, long end)

截取key鍵對應值得字符串,從開始下標位置開始到結束下標的位置(包含結束下標)的字符串。

  1.  
    String cutString = redisTemplate.opsForValue().get( "key", 0, 3);  
  2.  
    System.out.println( "通過get(K key, long start, long end)方法獲取截取的字符串:"+cutString);  

5、getAndSet(K key, V value)

  獲取原來key鍵對應的值並重新賦新值。

  1.  
    String oldAndNewStringValue = redisTemplate.opsForValue().getAndSet( "key", "ccc");  
  2.  
    System.out.print( "通過getAndSet(K key, V value)方法獲取原來的值:" + oldAndNewStringValue );  
  3.  
    String newStringValue = redisTemplate.opsForValue().get( "key");  
  4.  
    System.out.println( "修改過后的值:"+newStringValue);  

6、setBit(K key, long offset, boolean value)

  key鍵對應的值value對應的ascii碼,在offset的位置(從左向右數)變為value。

  1.  
    redisTemplate.opsForValue().setBit( "key",1,false);  
  2.  
    newStringValue = redisTemplate.opsForValue(). get("key")+"";  
  3.  
    System. out.println("通過setBit(K key,long offset,boolean value)方法修改過后的值:"+newStringValue);  

 7、getBit(K key, long offset)

  判斷指定的位置ASCII碼的bit位是否為1。

  1.  
    boolean bitBoolean = redisTemplate.opsForValue().getBit("key",1);  
  2.  
    System.out.println( "通過getBit(K key,long offset)方法判斷指定bit位的值是:" + bitBoolean);  

​​​​​​​8、size(K key)

  獲取指定字符串的長度

  1.  
    Long stringValueLength = redisTemplate.opsForValue().size( "key");  
  2.  
    System.out.println( "通過size(K key)方法獲取字符串的長度:"+stringValueLength);  

​​​​​​​9、increment(K key, double delta)

  以增量的方式將double值存儲在變量中。

  1.  
    double stringValueDouble = redisTemplate.opsForValue().increment("doubleKey",5);   
  2.  
    System.out.println( "通過increment(K key, double delta)方法以增量方式存儲double值:" + stringValueDouble);  

10、increment(K key, long delta)

  以增量的方式將long值存儲在變量中。

  1.  
    double stringValueLong = redisTemplate.opsForValue().increment("longKey",6);   
  2.  
    System.out.println( "通過increment(K key, long delta)方法以增量方式存儲long值:" + stringValueLong);  

​​​​​​​11、setIfAbsent(K key, V value)

  如果鍵不存在則新增,存在則不改變已經有的值。

  1.  
    boolean absentBoolean = redisTemplate.opsForValue().setIfAbsent("absentKey","fff");  
  2.  
    System.out.println( "通過setIfAbsent(K key, V value)方法判斷變量值absentValue是否存在:" + absentBoolean);  
  3.  
    if(absentBoolean){  
  4.  
        String absentValue = redisTemplate.opsForValue().get( "absentKey")+"";  
  5.  
        System.out.print( ",不存在,則新增后的值是:"+absentValue);  
  6.  
         boolean existBoolean = redisTemplate.opsForValue().setIfAbsent("absentKey","eee");  
  7.  
        System.out.print( ",再次調用setIfAbsent(K key, V value)判斷absentValue是否存在並重新賦值:" + existBoolean);  
  8.  
         if(!existBoolean){  
  9.  
            absentValue = redisTemplate.opsForValue().get( "absentKey")+"";  
  10.  
            System.out.print( "如果存在,則重新賦值后的absentValue變量的值是:" + absentValue);  

12、set(K key, V value, long timeout, TimeUnit unit)

  設置變量值的過期時間。

  1.  
    redisTemplate.opsForValue().set( "timeOutKey", "timeOut", 5, TimeUnit.SECONDS);  
  2.  
    String timeOutValue = redisTemplate.opsForValue().get( "timeOutKey")+"";  
  3.  
    System.out.println( "通過set(K key, V value, long timeout, TimeUnit unit)方法設置過期時間,
  4.  
    過期之前獲取的數據:"+timeOutValue);  
  5.  
    Thread.sleep( 5*1000);  
  6.  
    timeOutValue = redisTemplate.opsForValue().get( "timeOutKey")+"";  
  7.  
    System.out.print( ",等待10s過后,獲取的值:"+timeOutValue);  

13、set(K key, V value, long offset)

  覆蓋從指定位置開始的值。

  1.  
    redisTemplate.opsForValue().set( "absentKey","dd",1);  
  2.  
    String overrideString = redisTemplate.opsForValue().get( "absentKey");  
  3.  
    System.out.println( "通過set(K key, V value, long offset)方法覆蓋部分的值:"+overrideString);  

​​​​​​​

14、multiSet(Map<? extends K,? extends V> map)

  設置map集合到redis。

  1.  
    Map valueMap =  new HashMap();  
  2.  
    valueMap.put( "valueMap1","map1");  
  3.  
    valueMap.put( "valueMap2","map2");  
  4.  
    valueMap.put( "valueMap3","map3");  
  5.  
    redisTemplate.opsForValue().multiSet(valueMap);  

15、multiGet(Collection<K> keys)

  根據集合取出對應的value值。

  1.  
    //根據List集合取出對應的value值  
  2.  
    List paraList =  new ArrayList();  
  3.  
    paraList.add( "valueMap1");  
  4.  
    paraList.add( "valueMap2");  
  5.  
    paraList.add( "valueMap3");  
  6.  
    List<String> valueList = redisTemplate.opsForValue().multiGet(paraList);  
  7.  
    for (String value : valueList){  
  8.  
        System.out.println( "通過multiGet(Collection<K> keys)方法獲取map值:" + value);  
  9.  
    }

16、multiSetIfAbsent(Map<? extends K,? extends V> map)

  1.  
    Map valueMap =  new HashMap();  
  2.  
    valueMap.put( "valueMap1","map1");  
  3.  
    valueMap.put( "valueMap2","map2");  
  4.  
    valueMap.put( "valueMap3","map3");  
  5.  
    redisTemplate.opsForValue().multiSetIfAbsent(valueMap); 

 


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM