max_connections 的真正含义是什么?

What does max_connections really mean?(max_connections 的真正含义是什么?)
本文介绍了max_connections 的真正含义是什么?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在尝试为 MySQL 和共享主机上所需的资源设置理想的性能设置.

I'm trying to set the ideal performance setup for MySQL and resources needed on a shared hosting.

我的问题是,max_connections 到底是什么意思?

My question is, what does max_connections really mean?

是对服务器发出的唯一并发请求数吗?因此,如果有两个用户,其中 1 个打开 1 个选项卡,另一个打开 4 个选项卡……并且同时按下所有选项卡重新加载,是否会与 MySQL 数据库建立 5 个连接?因此,如果我们将这种情况变成:10 个有 2 个标签的人和 31 个有一个标签的人同时按下刷新……我们的 max_connections 为 50,每个人都会被锁定吗?

Is it the number of unique concurrent requests made to the server? So if there are two users, 1 with 1 tab open and the other with 4 tabs open... and both press all their tabs to reload at the same time, will there be 5 connections made to the MySQL DB? Consequently, if we bump this scenario to: 10 people with 2 tabs and 31 people with one tab all pressing refresh at the same time... with our max_connections at 50, will everyone get locked out?

我问的原因是因为我想以较低的 max_connections 拍摄以节省内存资源,因为我一直看到该站点进入 CPU 节流模式

The reason I ask is because I want to shoot for low max_connections to be conservative with memory resources since I consistently see the site going into cpu throttling mode

感谢您的帮助

推荐答案

是的,为每个页面打开了一个单独的连接.但是,假设您没有执行任何数据库密集型操作,一旦页面被提供给客户端,连接将是短暂的并自行关闭.

Yes, there is a separate connection opened for each page. However, assuming you're not doing anything database-intensive, the connection will be short-lived and close itself once the page has been served to the client.

如果确实超过了最大连接数,任何后续的连接尝试都将失败.

If you do exceed the maximum number of connections, any subsequent connection attempt will fail.

这篇关于max_connections 的真正含义是什么?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!

本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐

Hibernate reactive No Vert.x context active in aws rds(AWS RDS中的休眠反应性非Vert.x上下文处于活动状态)
Bulk insert with mysql2 and NodeJs throws 500(使用mysql2和NodeJS的大容量插入抛出500)
Flask + PyMySQL giving error no attribute #39;settimeout#39;(FlASK+PyMySQL给出错误,没有属性#39;setTimeout#39;)
auto_increment column for a group of rows?(一组行的AUTO_INCREMENT列?)
Sort by ID DESC(按ID代码排序)
SQL/MySQL: split a quantity value into multiple rows by date(SQL/MySQL:按日期将数量值拆分为多行)