SimpleNoSQL icon indicating copy to clipboard operation
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.

Results 16 SimpleNoSQL issues
Sort by recently updated
recently updated
newest added

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...

enhancement

For ordering, we should be able to just say ascending or descending and use the Object's native Comparable interface ( if it's comparable ).

enhancement

For ordering, we should be able to use any regular Comparator and just wrap it to make the NoSQLEntity checks.

enhancement

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...

enhancement