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