解决MySQL读写分离导致insert后select不到数据的问题

mysql设置独写分离,在代码中按照如下写法,可能会出现问题

// 先录入
this.insert(obj); 
// 再查询
object res = this.selectbyid(obj.getid());
res: null;

线上的一个坑,做了读写分离以后,有一个场景因为想方法复用,只传入一个id就好,直接去库里查出一个对象再做后续处理,结果查不出来,事务隔离级别各种也都排查了,最后发现是读写分离的问题,所以换个思路去实现吧。

补充知识:mysql insert插入条件判断:如果不存在则插入

我们经常需要进行sql的批量插入,要求:该条记录不存在则插入,存在则不插入。如果使用一条insert语句实现呢?

对于普通的 insert 插入,如果想要保证不插入重复记录,我们只有对某个字段创建唯一约束实现;

那有没有不创建唯一约束,仅通过 insert into 一条语句实现的方案呢?

答:使用 insert into if exists, 具体语法如下

insert into table(field1, field2, fieldn) 
select 'field1', 'field2', 'fieldn' 
from dual
where not exists(select field from table where field = ?)

例:

insert into a (order_id, operator, oper_date, memo) 
select '3', 'onion3', '2017-11-28', '测试3' 
from dual 
where not exists(select order_id from a where operator='onion3' and memo = '测试3'); 

以上这篇解决mysql读写分离导致insert后select不到数据的问题就是www.887551.com分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持www.887551.com。

(0)
上一篇 2022年3月21日
下一篇 2022年3月21日

相关推荐