What are the general limits, if any, of a very large frequently used collection (loads of writes and reads to the collection at the same time) in firestore?
Say you have an app where a user can scroll through a list of users. The information about each user is stored in a document in a collection. Now imagine a lot of new users is constantly created, and a lot of users is scrolling through the current list of users at the same time e.g. reading from the collection. Furthermore a lot of users searches the collection of users using different fields (name, interests, pets, etc.) and uses the indexes of Firestore.
If all of these things happened at the same time, would it affect the performance of firestore clientwise? Would it be necessary to create multiple smaller collections containing users? My question is to be understanded as an extreme case.