I use Firebase in my Android app, and I noticed that the app uses a lot of bandwidth. I only perform reading on minor children, as indicated by best practice, in order to maintain bandwidth.
If I execute this request:
Query queryRef = firebaseRef.orderByChild("internalKey").equalTo(false);
queryRef.addListenerForSingleValueEvent(new ValueEventListener()
{
...
Does the database bandwidth used take into account all the children of the node, or only those that have internalKey = false?
source
share