c#編寫的高并發(fā)數(shù)據(jù)庫控制訪問代碼
來源:易賢網(wǎng) 閱讀:827 次 日期:2015-04-01 15:26:30
溫馨提示:易賢網(wǎng)小編為您整理了“c#編寫的高并發(fā)數(shù)據(jù)庫控制訪問代碼”,方便廣大網(wǎng)友查閱!

代碼的作用在于保證在上端緩存服務失效(一般來說概率比較低)時,形成倒瓶頸,從而能夠保護數(shù)據(jù)庫,數(shù)據(jù)庫宕了,才是大問題(比如影響其他應用)。

假設(非完全正確數(shù)據(jù),僅做示例):

每秒支持10,000,000次查詢(千萬);

一次讀庫需要耗時:1ms;

修改內(nèi)存變量需要耗時:0.001ms;

那么:

每秒最終訪問的數(shù)據(jù)庫的請求數(shù)量 < 1000

其他的9,900,000個請求會返回到其他頁面。這就是為啥很多搶單網(wǎng)站有人可以訪問,而有人得到繁忙中頁面的原因。

微觀到1ms來看,在currentValidSessionID == -1的時間是 1ms,從而平均會有10000條記錄涌入。

currentValidSessionID從-1變?yōu)槠渌档臅r間為0.001ms,這個時間內(nèi),

代碼如下:

lock (databaseDoor)

{

// now there is only one request can reach below codes.

if (currentValidSessionID == -1)

{

currentValidSessionID = currentRequest.SessionID;

}

}

平均會有 10000×0.001=10條記錄會執(zhí)行到上述這段代碼,操作系統(tǒng)會為鎖形成等待序列。

那么我們的目標是,每毫秒只允許一次讀庫(因為其他應用也會使用),所以我們只希望這進入的10條,最終只有一條能夠繼續(xù)前進。

那么這就是

代碼如下:

if (currentValidSessionID == -1)

{

}

的作用了。再次進行一次判斷,進入原子保護隊列的請求,也只有一個能夠繼續(xù)。

一點思考:

其實對于一個主頻能上N GHz的服務器來說,一個內(nèi)存數(shù)賦值給另一個內(nèi)存數(shù)據(jù)就是1~4條指令(平均2條,兩次MOV操作),也就是2/N ns時間,而不是我們上述假設的 1000ns(0.001ms)。其實不用原子,我們已經(jīng)可以把千億級請求的訪問數(shù)控制在個位數(shù)。

不過一個架構師,如果可以用一個99.99%安全的方案,就絕對不用99.9%。 SO。

代碼如下:

public static long currentValidSessionID = -1;

public static object databaseDoor = new object();

void readDatabase(Request currentRequest)

{

// use currentValidSessionID to filter out other requests came in during the execute time gap

if (currentValidSessionID == -1)

{

// use object-lock to filter out other requests came in during the variable change time gap.

lock (databaseDoor)

{

// now there is only very little number of requests can reach below codes.

if (currentValidSessionID == -1)

{ // now there will be only one request can access the database

currentValidSessionID = currentRequest.SessionID;

}

}

}

if (currentValidSessionID == currentRequest.SessionID)

{ // here is the one !

try

{

// use transaction to guarantee the execute time to void block

// access database codes go here

}

catch()

{

// exception codes go here

}

finally

{

currentValidSessionID = -1; // recover to original state

}

}

}

更多信息請查看IT技術專欄

更多信息請查看網(wǎng)絡編程
易賢網(wǎng)手機網(wǎng)站地址:c#編寫的高并發(fā)數(shù)據(jù)庫控制訪問代碼

2025國考·省考課程試聽報名

  • 報班類型
  • 姓名
  • 手機號
  • 驗證碼
關于我們 | 聯(lián)系我們 | 人才招聘 | 網(wǎng)站聲明 | 網(wǎng)站幫助 | 非正式的簡要咨詢 | 簡要咨詢須知 | 新媒體/短視頻平臺 | 手機站點 | 投訴建議
工業(yè)和信息化部備案號:滇ICP備2023014141號-1 云南省教育廳備案號:云教ICP備0901021 滇公網(wǎng)安備53010202001879號 人力資源服務許可證:(云)人服證字(2023)第0102001523號
聯(lián)系電話:0871-65099533/13759567129 獲取招聘考試信息及咨詢關注公眾號:hfpxwx
咨詢QQ:1093837350(9:00—18:00)版權所有:易賢網(wǎng)