gpt4 book ai didi

android - 在 Firestore 事务中更新同一文档的多个字段时的定价

转载 作者:行者123 更新时间:2023-11-29 18:30:52 25 4
gpt4 key购买 nike

我有以下使用 Firestore 的交易:

mDb.runTransaction(new Transaction.Function<Void>() {
@Override
public Void apply(final Transaction transaction) throws FirebaseFirestoreException {
DocumentReference documentReference = mDb.collection("collectionOne").document("documentOne");
/*
some code
*/
transaction.update(documentReference, App.getResourses().getString(R.string.field_one), FieldValue.increment(1));
transaction.update(documentReference, App.getResourses().getString(R.string.field_two), FieldValue.increment(1));
return null;
}
}).addOnSuccessListener(new OnSuccessListener<Void>() {
@Override
public void onSuccess(Void aVoid) {
Log.d("Debugging", "Transaction correctly executed.");
}
}).addOnFailureListener(new OnFailureListener() {
@Override
public void onFailure(@NonNull Exception e) {
Log.w("Debugging", "Transaction failure.", e);
}
});

我的问题是:例如,在同一事务中更新同一文档的两个字段时,这样的事务会产生一个或两个文档读取吗?

最佳答案

when updating, for example, two fields of the same document within the same transaction, will such a transaction yield to one or two documents reads?

无论您在一次操作中更改了文档中的多少个字段,您将始终负责一次写入操作。如果您一个接一个地进行写入,您将被收取两次写入操作的费用。

关于android - 在 Firestore 事务中更新同一文档的多个字段时的定价,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56346671/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com