- MySQL 8 for Big Data
- Shabbir Challawala Jaydip Lakhatariya Chintan Mehta Kandarp Patel
- 64字
- 2021-08-20 10:06:04
SET PERSIST
Server variables can be configured globally and dynamically while the server is running. There are numerous system variables that we can set using SET GLOBAL:
SET GLOBAL max_connections = 1000;
However, such settings will be lost after server restart. To avoid this, MySQL 8 has introduced the SET PERSIST variant, which preserves variables across a server restart:
SET PERSIST max_connections = 1000;
推薦閱讀
- Learning Single:page Web Application Development
- Vue.js 2 and Bootstrap 4 Web Development
- 網(wǎng)絡(luò)爬蟲原理與實(shí)踐:基于C#語言
- FLL+WRO樂高機(jī)器人競賽教程:機(jī)械、巡線與PID
- 青少年P(guān)ython編程入門
- Python時間序列預(yù)測
- Scala for Machine Learning(Second Edition)
- Mastering C++ Multithreading
- SQL Server 入門很輕松(微課超值版)
- Java 9 with JShell
- ROS機(jī)器人編程實(shí)戰(zhàn)
- Implementing Domain:Specific Languages with Xtext and Xtend
- C#網(wǎng)絡(luò)編程高級篇之網(wǎng)頁游戲輔助程序設(shè)計
- Learning Apache Thrift
- AI輔助編程Python實(shí)戰(zhàn):基于GitHub Copilot和ChatGPT