I have a node in a realtime database which contains 100 objects. For a particular use case, I need to download specific objects (50-90 objects) from the collection.
Should I download each object separately using singleValueEventListener on each object or should I download the whole collection at once and use only the objects required.
Would the multiple singleValueEvenyListeners induce a lot of overhead bandwidth, to the extent that downloading the whole collection at once using only one singleValueEventListener cost me less download bandwidth?