當前位置: 首頁>>代碼示例>>Java>>正文


Java JedisCluster.getSet方法代碼示例

本文整理匯總了Java中redis.clients.jedis.JedisCluster.getSet方法的典型用法代碼示例。如果您正苦於以下問題:Java JedisCluster.getSet方法的具體用法?Java JedisCluster.getSet怎麽用?Java JedisCluster.getSet使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在redis.clients.jedis.JedisCluster的用法示例。


在下文中一共展示了JedisCluster.getSet方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。

示例1: acquire

import redis.clients.jedis.JedisCluster; //導入方法依賴的package包/類
public synchronized boolean acquire(JedisCluster jedis) throws InterruptedException {
    int timeout = timeoutMsecs;
    while (timeout >= 0) {
        long expires = System.currentTimeMillis() + expireMsecs + 1;
        String expiresStr = String.valueOf(expires) + "_" + UUID.randomUUID().toString(); //鎖到期時間
       // String expiresStr = String.valueOf(expires); //鎖到期時間
        if (jedis.setnx(lockKey, expiresStr) == 1) {
            // lock acquired
            locked = true;
            return true;
        }

        String currentValueStr = jedis.get(lockKey); //redis裏的時間
        String currentValueTimeStr = currentValueStr.split("_")[0];
       // System.out.println("currentValueTimeStr :"+currentValueTimeStr);
        if (currentValueStr != null && Long.parseLong(currentValueTimeStr) < System.currentTimeMillis()) {
            //判斷是否為空,不為空的情況下,如果被其他線程設置了值,則第二個條件判斷是過不去的
            // lock is expired

            String oldValueStr = jedis.getSet(lockKey, expiresStr);
            //獲取上一個鎖到期時間,並設置現在的鎖到期時間,
            //隻有一個線程才能獲取上一個線上的設置時間,因為jedis.getSet是同步的
            if (oldValueStr != null && oldValueStr.equals(currentValueStr)) {
            	if(map.containsKey(oldValueStr)){
            	    System.out.println("map.containsKey true...");
            		map.put(oldValueStr, map.get(oldValueStr)+1);
            	}else{
            		map.put(oldValueStr, 1);
            	}
            	
            	
                //如過這個時候,多個線程恰好都到了這裏,但是隻有一個線程的設置值和當前值相同,他才有權利獲取鎖
                // lock acquired
            	//System.out.println("cas 當前線程值獲取鎖《《《《《《《《《《《《《《《《《《《《《《《《《《《《《《《");
                locked = true;
                return true;
            }else{
            	//System.out.println("cas 當前線程值已被修改>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>");
            }
        }
        timeout -= 100;
        Thread.sleep(100);
    }
    return false;
}
 
開發者ID:xiaomin0322,項目名稱:redis_lock,代碼行數:46,代碼來源:JedisLock.java

示例2: acquire2

import redis.clients.jedis.JedisCluster; //導入方法依賴的package包/類
public synchronized boolean acquire2(JedisCluster jedis) throws InterruptedException {
    int timeout = timeoutMsecs;
    while (timeout >= 0) {
        long expires = System.currentTimeMillis() + expireMsecs + 1;
        String expiresStr = String.valueOf(expires); //鎖到期時間
        if (jedis.setnx(lockKey, expiresStr) == 1) {
            // lock acquired
            locked = true;
            return true;
        }

        String currentValueStr = jedis.get(lockKey); //redis裏的時間
       // System.out.println("currentValueTimeStr :"+currentValueTimeStr);
        if (currentValueStr != null && Long.parseLong(currentValueStr) < System.currentTimeMillis()) {
            //判斷是否為空,不為空的情況下,如果被其他線程設置了值,則第二個條件判斷是過不去的
            // lock is expired

            String oldValueStr = jedis.getSet(lockKey, expiresStr);
            //獲取上一個鎖到期時間,並設置現在的鎖到期時間,
            //隻有一個線程才能獲取上一個線上的設置時間,因為jedis.getSet是同步的
            if (oldValueStr != null && oldValueStr.equals(currentValueStr)) {
            	if(map.containsKey(oldValueStr)){
            	    System.out.println("map.containsKey true...");
            		map.put(oldValueStr, map.get(oldValueStr)+1);
            	}else{
            		map.put(oldValueStr, 1);
            	}
            	
            	
                //如過這個時候,多個線程恰好都到了這裏,但是隻有一個線程的設置值和當前值相同,他才有權利獲取鎖
                // lock acquired
            	//System.out.println("cas 當前線程值獲取鎖《《《《《《《《《《《《《《《《《《《《《《《《《《《《《《《");
                locked = true;
                return true;
            }else{
            	//System.out.println("cas 當前線程值已被修改>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>");
            }
        }
        timeout -= 100;
        Thread.sleep(100);
    }
    return false;
}
 
開發者ID:xiaomin0322,項目名稱:redis_lock,代碼行數:44,代碼來源:JedisLock.java


注:本文中的redis.clients.jedis.JedisCluster.getSet方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。