SimpleNoSQL
SimpleNoSQL copied to clipboard
A simple NoSQL client for Android. Meant as a document store using key/value pairs and some rudimentary querying. Useful for avoiding the hassle of SQL code.
Sqlite3 has threading issues which prevents us from reading/writing to the database using multiple threads even if we do our own locking. This is to try making an alternative data...
For ordering, we should be able to just say ascending or descending and use the Object's native Comparable interface ( if it's comparable ).
For ordering, we should be able to use any regular Comparator and just wrap it to make the NoSQLEntity checks.
In my android code, SimpleNoSQL ocassionally crashes the app on start. Error message is that database is locked. Since there is not initDB function, how to handle this scenario. id.database.sqlite.SQLiteDatabaseLockedException:...
Flat Buffers could incredibly speed up the retrieval and storage of objects assuming the models a person is storing supports flat buffers. In a simple way, this could just be...
It would be useful if SimpleNoSQL could have some sort of indexing on fields to make retrieval faster than the current query mechanism over large data sets. Currently we must...