Home >Database >Mysql Tutorial >简单测试PHP插入记录到mysql时输出和不输出每条结果时性能影响_MySQL

简单测试PHP插入记录到mysql时输出和不输出每条结果时性能影响_MySQL

WBOY
WBOYOriginal
2016-06-01 13:10:51879browse

这里使用1w记录和100条记录插入实验,看看插入时有输出和无输出的影响

表结构

字段 类型 默认 注释
id int(11)
name char(50)
pwd varchar(255)
ptime bigint(20)
state int(11)

10000条插入

有输出耗时:256S  并发:39/S

无输出耗时:230S  并发:43/S

100条插入

有输出耗时:1.656S 并发:60.386/S

无输出耗时:1.547S 并发:64.641/S


简单的测试表明在批量执行sql时不是必要最好还是不要输出结果信息,等全部sql执行完毕再检查结果。

Statement:
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