Formula for calculating MySQL's peak memory
Feb 18, 2017 am 11:09 AM
-- Formula for calculating MySQL’s peak memory, when all connections are full:
select
(@@key_buffer_size + @@query_cache_size + @@tmp_table_size + @@innodb_buffer_pool_size + @@innodb_additional_mem_pool_size + @@innodb_log_buffer_size + @@max_connections * ( @@read_buffer_size + @@read_rnd_buffer_size + @@sort_buffer_size+ @@join_buffer_size + @@binlog_cache_size + @@thread_stack ) )/1024/1024/1024;
-- Memory single connection value calculation 1
select @@read_buffer_size , @@read_rnd_buffer_size , @@sort_buffer_size, @@join_buffer_size , @@binlog_cache_size, @@thread_stack;
-- Memory single Connection value calculation 2
select @@key_buffer_size , @@query_cache_size , @@tmp_table_size , @@innodb_buffer_pool_size , @@innodb_additional_mem_pool_size , @@innodb_log_buffer_size;
The above is the content of the formula for calculating MySQL’s peak memory. For more related content, please pay attention to the PHP Chinese website (www.php.cn)!

Hot Article

Hot tools Tags

Hot Article

Hot Article Tags

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

Large memory optimization, what should I do if the computer upgrades to 16g/32g memory speed and there is no change?

PHP's big data structure processing skills

How to optimize MySQL query performance in PHP?

Sources say Samsung Electronics and SK Hynix will commercialize stacked mobile memory after 2026

How to use MySQL backup and restore in PHP?

Kingbang launches new DDR5 8600 memory, offering CAMM2, LPCAMM2 and regular models to choose from

How to insert data into a MySQL table using PHP?

The impact of the AI wave is obvious. TrendForce has revised up its forecast for DRAM memory and NAND flash memory contract price increases this quarter.
