0

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

Thomas J
  • 146
  • 10
Kamil
  • 49
  • 1
  • 5
  • 1
    What issue are you running into? Key-value is effectively the same as a Document with no additional indexes aside from primary. – David Makogon Apr 05 '18 at 16:45

1 Answers1

2

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.