實戰Memcached快取系統(6)Memcached CAS的多執行緒程式例項
1. 源程式
3. 分析
package com.sinosuperman.memcached;
import java.io.IOException;
import java.net.InetSocketAddress;
import net.spy.memcached.CASResponse;
import net.spy.memcached.CASValue;
import net.spy.memcached.MemcachedClient;
public class Test {
private static MemcachedClient client = null;
static {
try {
client = new MemcachedClient(new InetSocketAddress("localhost", 11211));
} catch (IOException o) {
}
}
public static void main(String[] args) throws Exception {
client.set("numberss", 1800, 1);
Test testObj = new Test();
for (int i = 0; i < 10; i++) {
testObj.new ThreadTest("Thread-" + (i + 1)).start();
}
}
private class ThreadTest extends Thread {
private MemcachedClient client = null;
ThreadTest(String name) throws IOException {
super(name);
client = new MemcachedClient(new InetSocketAddress("localhost", 11211));
}
public void run() {
int i = 0;
int success = 0;
while (i < 10) {
i++;
CASValue<Object> uniqueValue =client.gets("numberss");
CASResponse response = client.cas("numberss",
uniqueValue.getCas(), (Integer)uniqueValue.getValue() + 1);
if (response.toString().equals("OK")) {
success++;
}
if (i == 10)
System.out.println(Thread.currentThread().getName() + " " + i
+ " time " + " update oldValue : " + uniqueValue.getValue()
+ " , result : " + response);
}
if (success < 10) {
Count.incr(10 - success);
System.out.println("Test counter: " + Count.get());
}
}
}
public static class Count {
private static int counter = 0;
public static void incr(int x) {
counter += x;
}
public static int get() {
return counter;
}
}
}
2. 輸出結果:
Thread-1 10 time update oldValue : 14 , result : EXISTS
Test counter: 6
Thread-2 10 time update oldValue : 14 , result : EXISTS
Test counter: 15
Thread-3 10 time update oldValue : 17 , result : EXISTS
Test counter: 22
Thread-5 10 time update oldValue : 17 , result : EXISTS
Test counter: 27
Thread-4 10 time update oldValue : 20 , result : OK
Test counter: 33
Thread-8 10 time update oldValue : 27 , result : OK
Test counter: 36
Thread-6 10 time update oldValue : 28 , result : EXISTS
Test counter: 43
Thread-10 10 time update oldValue : 31 , result : EXISTS
Test counter: 52
Thread-9 10 time update oldValue : 31 , result : OK
Test counter: 60
Thread-7 10 time update oldValue : 35 , result : OK
Test counter: 65
3. 分析
我們可以看到,未成功的次數最終為65,資料值最終為35,兩者的和剛好是100,正好符合我們的實驗結果預期。
相關文章
- Memcached 多執行緒和狀態機執行緒
- Memcached安裝與使用例項
- Linux系統中部署memcachedLinux
- Java多執行緒之CASJava執行緒
- Qt中的多執行緒與執行緒池淺析+例項QT執行緒
- pytest(13)-多執行緒、多程式執行用例執行緒
- Shopify使用Memcached而不是Redis快取提升20%效能Redis快取
- pytest多程式/多執行緒執行測試用例執行緒
- C#多執行緒程式設計實戰1.1建立執行緒C#執行緒程式設計
- 對比Memcached和Redis,誰才是適合你的快取?Redis快取
- Rust編寫的Memcached快取替代品:memc.rsRust快取
- Memcached
- 輕量級 memcached快取代理 twemproxy實踐快取
- Python程式和執行緒例項詳解Python執行緒
- 多執行緒6執行緒
- Java多執行緒之守護執行緒實戰Java執行緒
- LNMP 分散式叢集(四):Memcached 快取伺服器的搭建LNMP分散式快取伺服器
- Java 多執行緒讀取檔案並統計詞頻 例項 出神入化的《ThreadPoolExecutor》Java執行緒thread
- 一看就懂的python小程式-支援多執行緒聊天例項Python執行緒
- Java之執行緒同步完成售票例項的6種方式Java執行緒
- 深入淺出Java多執行緒(十):CASJava執行緒
- Java併發/多執行緒-CAS原理分析Java執行緒
- Java多執行緒之—Synchronized方式和CAS方式實現執行緒安全效能對比Java執行緒synchronized
- 執行緒以及多執行緒,多程式的選擇執行緒
- C#多執行緒(6):執行緒通知C#執行緒
- C#並行,多執行緒程式設計並行集合和PLINQ的例項講解並行執行緒程式設計
- 作業系統:多執行緒作業系統執行緒
- 【多執行緒與高併發3】常用鎖例項執行緒
- 多執行緒,多程式執行緒
- 【多執行緒系列】CAS、AQS簡單介紹執行緒AQS
- Ubuntu 18.04系統編譯安裝Memcached教程。Ubuntu編譯
- Ubuntu 20.04系統編譯安裝Memcached教程。Ubuntu編譯
- 玩轉java多執行緒 之多執行緒基礎 執行緒狀態 及執行緒停止實戰Java執行緒
- Memcached實戰之複製----基於repcached的主從【轉】PCA
- java多執行緒6:ReentrantLockJava執行緒ReentrantLock
- 多執行緒------執行緒與程式/執行緒排程/建立執行緒執行緒
- 多執行緒併發鎖分類以及簡單例項執行緒單例
- 安裝 Memcached
- Memcached 原理剖析