As already stated here, I got a question regarding the concurrent connections. In the documentation is stated, that values can (and mostly should) be retreived with ref.on('child_added')
Let's say we have a simple list of friends. Does this mean we have one active connection for said callback and additionally another one for the 'child_removed' event (when someone removes me from their friend list). So we need two callbacks for every data I want to retreive.
This will result in a lot of connections considering things like chat-messages, profile data, and so on, are solved the same way.
Am i misunderstanding the concept,or does this mean that for the 100 free concurrent connections, the limit in a simple chat-application is reached with about 20 users ?