- 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;
推薦閱讀
- INSTANT Mock Testing with PowerMock
- DBA攻堅指南:左手Oracle,右手MySQL
- Python程序設計
- Mastering AndEngine Game Development
- 大學計算機基礎(第2版)(微課版)
- Python數據可視化之Matplotlib與Pyecharts實戰
- 零基礎學單片機C語言程序設計
- Java程序設計
- Gradle for Android
- VMware虛擬化技術
- Image Processing with ImageJ
- QGIS 2 Cookbook
- Natural Language Processing with Python Quick Start Guide
- SAP Web Dynpro for ABAP開發技術詳解:基礎應用
- 深入淺出 HTTPS:從原理到實戰