#learning #firebase
How to proper wait for a Document to be created. There's an excellent tip at the end.
https://puf.io/posts/waiting-for-firestore-to-create-a-document/
How to proper wait for a Document to be created. There's an excellent tip at the end.
https://puf.io/posts/waiting-for-firestore-to-create-a-document/
puf.io
Waiting for Firestore to create a document
#learning #firebase
Enable Firestore Caching on Web. In Flutter and others sdks.
https://puf.io/posts/enable-firestore-caching-on-web/
Enable Firestore Caching on Web. In Flutter and others sdks.
https://puf.io/posts/enable-firestore-caching-on-web/
puf.io
How to enable Firestore caching on web
Firestore can cache recently read documents in the client, to save on server-side document reads (which you pay for). On mobile SDKs this caching is enabled by default, but on the web SDK you have to enable it yourself. Read this post to learn how to enable…
#learning #firebase
How to count document reads
https://puf.io/posts/counting-document-reads-in-firestore/
How to count document reads
https://puf.io/posts/counting-document-reads-in-firestore/
puf.io
Counting document reads per user in Firestore
Firestore is a serverless NoSQL database. For most projects, the largest part of their Firestore cost comes from *document reads*. You pay this cost each time the Firestore database server reads a document from disk for your app. their users are causing.…