How to reduce reads for static data
I want to ask documentation on how to reduce the number of unnecessary reads. eg. my product data
let query = store.collection("products");
Assuming I have 500 products, one user click on get products = 500 reads ? If 100 users click that function, then all my quota is gone in 1 minute. Is that right?
How can I overcome this.
Please provide a full example. I have seen Mr Duckworth's presentation in a firebase event, but could not see a good example.
-
South Croydon commented
As there is no documentation or example for my above ask, I no longer use firebase. Changing importance to NOT AT ALL in sync with google firebase team
-
South Croydon commented
Is there an example for https://firebase.blog/posts/2021/04/firestore-supports-data-bundles/
-
South Croydon commented
@Frank van puffelen I did see post comment taking forever to complete. So I cancelled and copy pasted. probably that is what you meant by multiple times. I was looking for inputs from months on stackoverflow.
Appreciate if firebase provides a complete end to end example
-
Please don't post the same feature request multiple times. Closing this in favor of http://firebase.uservoice.com/forums/948424/suggestions/47205953
-
South Croydon commented
I want to ask documentation on how to reduce the number of unnecessary reads. eg. my product data
let query = store.collection("products");
Assuming I have 500 products, one user click on get products = 500 reads ? If 100 users click that function, then all my quota is gone in 1 minute. Is that right?
How can I overcome this.
Please provide a full example. I have seen Mr Duckworth's presentation in a firebase event, but could not see a good example. datadundles? how it is integrated?