Realm.io and asynchronous queries
问题 We are starting to use Realm.io in an android app project. But something that we don't like with the Realm.io API is the absence of any asynchronous way to query the database. In old projects we used DbQuery and Sqlite, so we are used to make the database queries inside threads or AsyncTask 's. But is quite disturbing see that in all the examples the queries are made in the UiThread . Isn't this a bad thing for the app performance?. We tried to make the queries inside threads or AsyncTasks