关于oracle的upsert

incr

redis有incr功能,可以很轻松地原子递增,同时对不存在的key,默认初始为0,incr之后为1.这个即为方便,既解决了upsert的问题,也解决了原子并发问题。

pg有upsert的功能,oracle没有,有人有给出如下方案

merge into mergetest m using dual on (a = xa)
         when not matched then insert (a,b) values (xa,1)
             when matched then update set b = b+1;

不过,这个并不是原子的,并发情况下还是存在insert多条的情况。

alternative

有没有其他方案呢,传统的方案就是用乐观锁,或者悲观锁,不过这个性能太差。另外一个方案,就是把incr的操作日志化,即不实际操作incr,而是记录这个操作,之后count一下就出来所有的累计值了。

doc

  • Oracle: how to UPSERT (update or insert into a table?)

你可能感兴趣的:(oracle)