I was wondering what is the difference between database.getReference("foo/bar/123") and database.getReference("foo").child("bar").child("123") ?
I assume the later one will load the full object "foo", whereas database.getReference("foo/bar/123") just loads the object "123"?
Is my guess correct or what is the correct / most efficient way to load 123 data?
android firebase firebase-database
sockeqwe
source share