Home  >  Article  >  Backend Development  >  mysql - 求一段php逻辑代码

mysql - 求一段php逻辑代码

WBOY
WBOYOriginal
2016-06-06 20:16:001208browse

类似评论的功能
表table1内有字段floor,time,text
如何实现floor自增,同时插入时加锁(防止高并发同floor),最好能有php代码

回复内容:

类似评论的功能
表table1内有字段floor,time,text
如何实现floor自增,同时插入时加锁(防止高并发同floor),最好能有php代码

建表的时候说明floor是自增的就行了,比如
create table table 1 (
floor int not null auto_increment primary,
time...
)....
如果表已经建好了用alter修改一下就行了。
这样死活都重复不了的,和高并发无关。

创建数据库的时候不仅仅要把floor设为auto_increment,还必须把存储引擎设了innodb,innodb是行锁,并且写数据是分页的,myisam是表锁,是安partition写的。

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