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.
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 pull in all results into memory and apply a filter to remove invalid items. Instead it would be nice if we could apply an @Indexed annotation on properties of our models and have them added to a text index for faster search.
This would have to include some sort of mechanism in our queries to use the index for retrieval as well. The regular filtering mechanism should still be available.
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 pull in all results into memory and apply a filter to remove invalid items. Instead it would be nice if we could apply an @Indexed annotation on properties of our models and have them added to a text index for faster search.
This would have to include some sort of mechanism in our queries to use the index for retrieval as well. The regular filtering mechanism should still be available.