ArangoDB is known to support not only graph and document model, but also key-value model. So my question is: how to store simple key-value data?
I read that it could be a problem in ArangoDB: Issue on Github
ArangoDB is known to support not only graph and document model, but also key-value model. So my question is: how to store simple key-value data?
I read that it could be a problem in ArangoDB: Issue on Github
Simple key-value data in ArangoDB is stored as a document collection without additional indexes.
The key/value store data model is the easiest to scale. In ArangoDB, this is implemented in the sense that a document collection always has a primary key _key attribute and in the absence of further secondary indexes the document collection behaves like a simple key/value store.
This is listed in the documentation.