我正在使用事务在Node.js应用中使用Firebase管理员api写入Firebase实时数据库中的特定位置。我观察到,即使没有其他客户端使用数据库,事务处理程序也会被调用两次。
以下是显示此行为的最少代码。
firebaseAdmin.database().ref('some/path').transaction(currentData => {
console.log('transaction handler got called');
return {'abc': 'def'};
}, null, false).then(value => {
console.log('transaction complete')
}).catch(reason => {
console.log('transaction failed. ' + reason);
});
我观察到transaction handler got called
每次执行上述代码都会被记录两次。
我知道,如果其他一些客户端在currentData
之间的窗口中对窗口的db路径进行写操作,并且尝试将新数据提交给db路径,则可以多次调用该处理程序。但是,在我的情况下,没有其他客户,所以我无法理解为什么需要两次调用事务处理程序。
有人知道这是什么原因吗?
答案 0 :(得分:0)
这是预期的行为。当您运行事务时,Firebase客户端会以对当前值some/path
的最佳猜测立即调用您的事务处理程序。首次运行时,最好的猜测通常是null
。如果some/path
已经存在,那总是错误的,并且一旦客户端具有正确的当前值,将始终导致对事务处理程序的第二次调用。
在流程图中看起来像这样
app code client server
+ +
transaction() | |
|+--+ |
| |current == null |
| v |
| |new = 0 |
|<--+ |
| |
| current==null, new=0 |
|+----------------------->|
| |+--+
| | |current != null
| | v
| | |current = 0
| |<--+
| NACK, current=0 |
|<-----------------------+|
| |
|+--+ |
| |curent==0 |
| v |
| |new=1 |
|<--+ |
| |
| current==0, new=1 |
|+----------------------->|
| |+--+
| | |current == 0
| | v
| | |current = 1
| |<--+
| ACK, current=1 |
|<-----------------------+|
| |
+ +
另请参阅以下有关交易方式的说明: