I have a list of service that each have a number of fields that are structured like this
Service1*
ServiceID* NetID* Country* price* xxx* xxx* 10 fields in total*
Service2*
ServiceID* NetID* Country* price* xxx* xxx* 10 fields in total*
I have arranged currently where each service is its own document for a total of 1,180. However when a user visits my site and wants to select a service, the server would fetch all 1180. With just 100users firebase would reading 100k docs. I was thinking of saving a copy of all the services as a csv and loading it from there every time a user wants to search the service.
Is there any better of structuring the data or using another method to reduce my read count of Firestore.