Colin Miller

Results 8 issues of Colin Miller

When attempting to deploy or run locally the bookshelf-2 project, I receive the following error. There does not seem to be any documentation at https://cloud.google.com/java/getting-started/tutorial-app on setting up an index....

type: docs
priority: p3

It may be useful for testing or an app that has transient data to have an in memory datastore rather than relying on sqlite3.

enhancement

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

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

The class definition needs to be changed to: `class WordListAdapter : ListAdapter(WordsComparator()) {` Currently, ListAdapter is defined by `ListAdapter(WordsComparator())` which leads to an undefined reference.