Firebase数据库:
{
"balance" : 10
}
应用程序1(伪代码):
if (balance-10 >= 0)
{
// Application freezes for a few seconds. (Connection/hardware issue or whatever reason)
balance -= 10;
}
应用2(伪代码):
if (balance-10 >= 0)
{
// Application is executed without any problems.
balance -= 10;
}
如果两个应用程序同时启动,则最终的“余额”值将为“-10”而不是“0”。
在MySQL中,这个问题很容易解决:
UPDATE`table` SET balance = IF(balance-10> = 0,balance-10,balance);
Firebase有哪些可能的解决方案?
答案 0 :(得分:0)
这是通过transactions处理的。由于您没有指定我显示网络代码的技术:
balanceRef.transaction(function(current) {
if (current && current > 10) {
return current - 10;
}
return (current || 0);
}
如果多个应用程序同时运行此代码,其中一个应用程序将拒绝其事务并重试。
另见: