Multiple read requests with Firestore #659
gabrielWilli
started this conversation in
General
Replies: 1 comment
-
It depends on your usage. As Firestore is not free and required paid plan, you cannot use it as condition or value checking. The Firestore database is document based which involved the document (JSON) structured data when you read it from server. The size of document can be small to large, depending on the complexity of your data. Then every time you execute You can apply the field mask for returning only the fields you want. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I am using the Firestore library and I noticed something that may be exhibiting abnormal behavior. I have a check:
which is inside the
setup
method (where it should only be executed once), however, when I examine the Firestore metrics, I notice a significantly higher number of read requests than normal and expected, as described in the code.Could you tell me if this is normal behavior or if it is something that requires attention?
Beta Was this translation helpful? Give feedback.
All reactions