MYSQL并发的问题

WBOY
Release: 2016-06-23 14:06:24
Original
869 people have browsed it

$sql = "SELECT d.*, u.nickname,u.dkday FROM users AS u RIGHT OUTER JOIN dklist AS d ON (u.uid = d.uid) $where order by $orderName DESC LIMIT ".($page-1) * $pageSize.','.$pageSize;
$result = mysql_query($sql);
以上分页代码在网站首页加载时运行,取第一页数据。
日PV3500,总提示连接数超限,应该不至于吧。
大家觉得有什么问题会导致连接池满呢?

大约20分钟就满,现在MYSQL调的并发连接数是1500。


回复讨论(解决方案)

你用的是长连接吧(mysql_pconnect)

你用的是长连接吧(mysql_pconnect)

一语中的

系统是2003的?

linux系统

还真没有长链接
$_SC['pconnect'] = 0; //数据库持久连接 0=关闭, 1=打开

应该是 打开连接之后 没有关闭

mysql_close();

close了,监测连完不到一秒就没了,并发肯定是超100了,设的1500没起作用是怎么回事呢。

并发数设置没起作用,另外,另一个网站用的同一个数据库,好多sleep进程……。

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template