Changes between Version 2 and Version 3 of jazz/MySQL
- Timestamp:
- Sep 12, 2017, 4:57:03 PM (7 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
jazz/MySQL
v2 v3 49 49 17 rows in set (0.00 sec) 50 50 }}} 51 * 查詢目前的連線等待時間 - [參考] https://stackoverflow.com/questions/23399111/safely-keeping-mysql-connections-alive 51 * 查詢目前的連線等待時間 52 ** [參考] https://stackoverflow.com/questions/23399111/safely-keeping-mysql-connections-alive 53 ** 預設值是 28800 seconds 52 54 {{{ 53 55 mysql> SHOW VARIABLES where Variable_name like 'wait%'; … … 59 61 1 row in set (0.00 sec) 60 62 }}} 63 ** 可以 runtime 修改 64 {{{ 65 mysql> set global wait_timeout=60; 66 mysql> set session wait_timeout=60; 67 mysql> SHOW VARIABLES where Variable_name like 'wait%'; 68 +---------------+-------+ 69 | Variable_name | Value | 70 +---------------+-------+ 71 | wait_timeout | 60 | 72 +---------------+-------+ 73 1 row in set (0.00 sec) 74 }}}