Experience using RemoteDB in mobile applications

Hello! I want to use RemoteDB in the mobile application. Interested in the experience of using RemoteDB, in particular, how RemoteDB behaves in case of poor mobile communication, disconnection, etc.
I did not find such information in the documentation.

RemoteDB works fine in mobile applications. It's designed to not keep open connections with the server. Each data request is an operation on its own, if a previous one failed, the next one might work fine. If the database connection in the server is gone, it will try to reconnect again.

Of course, avoid transferring too much data if you have poor connection.