2012-07-22 90 views
1

首先,我要強調測試我的服務器[xeon(2x)2.53ghz, 4gb ram] [build by Yii],病情穩定有:
1 - 創建新recorde - 約200
2 - 更新數據庫 - 約250
3 - 查詢數據庫 - 約300
如果我用這個數字的請求範圍,我得到的請求狀態是null
而我有另一個測試don't use db [它只是發送一個帖子名稱到服務器和服務器echo東西] - 我發送了約1000個線程請求的成功請求數約800,其餘的是null
所以,你感到沉淪請幫幫我,關於請求的數量是合適的,或者是非常低的,以及如何克服null請求響應
[tool test: I built a simple project by objective-C]壓力測試服務器處理請求

回答

1

你試過ab? Apache基準測試工具?

$ ab -n 200 -c 5 http://myhost/the/page/that/creates/the/records 
$ ab -n 250 -c 5 http://myhost/the/page/that/updates/the/records 
$ ab -n 300 -c 5 http://myhost/the/page/that/queries/the/records