>백엔드 개발 >PHP 튜토리얼 >多个接口更新单表频繁创建更新时有unique key冲突

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

WBOY
WBOY원래의
2016-06-06 20:38:39995검색

环境: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>

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>

3)insert ignore
4) on duplicate key

具体问题需要具体分析

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

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

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

성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.