Heim > Backend-Entwicklung > PHP-Tutorial > 多个接口更新单表频繁创建更新时有unique key冲突

多个接口更新单表频繁创建更新时有unique key冲突

WBOY
Freigeben: 2016-06-06 20:38:39
Original
996 Leute haben es durchsucht

环境:mysql5.6、php5.5
多个api接口同时对单表c_point表更新创建数据,

c_point表结构:
id primary key int(11) auto incrment,
uid char(32) not null unique key,
temporary decimal(10,2) not null,
pressure decimal(10,2) not null,
updated_at timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP

计算规则:
uid = md5(deviceid+pointid)

接口A:
更新c_point表的temporary字段,如果没有则创建一条新纪录。
接口B:
更新c_point表的pressure,如果没有则创建一条新纪录。

接口A、B在插入前都有select检查。

当A、B接口同时调用时出现A和B同时进行insert操作,报出
exception 'PDOException' with message 'SQLSTATE[23000]: Integrity constraint violation: 1062 Duplicate entry '8b3e94ae3568001854dd7c112702dd36' for key 'uid'

针对这种多个接口针对同一个表的同一个row创建更新时怎么处理,能让两个接口都更新各自的字段?

结论:
1)插入前先select,再insert(目前的场景不合适,但仍然有必要加上去)
2)try catch 解析错误码

<code>  $duplicate = false;
  $entry      = $key = null;
  $inner      = $e->getInner(); 
  $info       = $inner->errorInfo;

  // Check if mysql error is for a duplicate key
  if (in_array($info[1], array(1062, 1022, 1558))) {
        $duplicate = true;
        preg_match("/'(.*)'.*'(.*)'/", $info[2], $matches);
        $entry = $matches[1];
        $key = $matches[2];
  }
</code>
Nach dem Login kopieren
Nach dem Login kopieren

3)insert ignore
4) on duplicate key

具体问题需要具体分析

http://mikefenwick.com/blog/insert-into-database-or-return-id-of-duplicate-row-in-mysql/

回复内容:

环境:mysql5.6、php5.5
多个api接口同时对单表c_point表更新创建数据,

c_point表结构:
id primary key int(11) auto incrment,
uid char(32) not null unique key,
temporary decimal(10,2) not null,
pressure decimal(10,2) not null,
updated_at timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP

计算规则:
uid = md5(deviceid+pointid)

接口A:
更新c_point表的temporary字段,如果没有则创建一条新纪录。
接口B:
更新c_point表的pressure,如果没有则创建一条新纪录。

接口A、B在插入前都有select检查。

当A、B接口同时调用时出现A和B同时进行insert操作,报出
exception 'PDOException' with message 'SQLSTATE[23000]: Integrity constraint violation: 1062 Duplicate entry '8b3e94ae3568001854dd7c112702dd36' for key 'uid'

针对这种多个接口针对同一个表的同一个row创建更新时怎么处理,能让两个接口都更新各自的字段?

结论:
1)插入前先select,再insert(目前的场景不合适,但仍然有必要加上去)
2)try catch 解析错误码

<code>  $duplicate = false;
  $entry      = $key = null;
  $inner      = $e->getInner(); 
  $info       = $inner->errorInfo;

  // Check if mysql error is for a duplicate key
  if (in_array($info[1], array(1062, 1022, 1558))) {
        $duplicate = true;
        preg_match("/'(.*)'.*'(.*)'/", $info[2], $matches);
        $entry = $matches[1];
        $key = $matches[2];
  }
</code>
Nach dem Login kopieren
Nach dem Login kopieren

3)insert ignore
4) on duplicate key

具体问题需要具体分析

http://mikefenwick.com/blog/insert-into-database-or-return-id-of-duplicate-row-in-mysql/

不需要使用 select 检查。直接插,冲突了就表明已经存在了,按已经存在的逻辑做。

PS: 请认真排版你的问题好不好,刚刚因为排版不清晰看错了。

Verwandte Etiketten:
Quelle:php.cn
Erklärung dieser Website
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn
Beliebte Tutorials
Mehr>
Neueste Downloads
Mehr>
Web-Effekte
Quellcode der Website
Website-Materialien
Frontend-Vorlage