java web site效能分析1 術語

2021-06-03 04:55:03 字數 546 閱讀 2999

load: customers using your web site  負載

concurrent load: users currently using the web site 併發負載

active load: customers ****** requests of the web site  有效負載

peak load: maximum concurrent web site customers  最大負載

throughput: customers served over time  吞吐量

throughput curve: finding the throughput upper bound 吞吐量曲線

hit——一次http請求

tps:transactions per second,web站點將請求-響應視為乙個事務

page rate:單位時間返回頁面數

response time: time to serve the customer——響應時間

think time——思考時間——請求之間的間隔

mysql 效能分析 Mysql效能分析

優化mysql資料庫效能的十個引數 1 max connections 允許的同時客戶的數量。增加該值增加 mysqld 要求的檔案描述符的數量。這個數字應該增加,否則,你將經常看到 too many connections 錯誤。預設數值是100,我把它改為1024 2 record buffer...

mysql效能分析方法 mysql 效能分析方法

1.explain分析法 explain 分析查詢語句 1 id列數字越大越先執行,如果說數字一樣大,那麼就從上往下依次執行 2 select type查詢型別 primary dependent subquery等 3 table表名 4 type 從上到下效能依次下降 system 表中只有一行...

mysql 效能分析 mysql效能分析工具

一 expalin 在sql語句之前加上explain關鍵字就可以獲取這條sql語句執行的計畫 那麼返回的這些欄位是什麼呢?我們先關心一下比較重要的幾個字段 1.select type 查詢型別 1 簡單查詢,沒有union和子查詢 2 priamry 主查詢,有union或子查詢的最外層查詢 3 ...