I've been reading about OrientDB for a while now, and I'm a bit confused about the "Editions" of the software.

The main version sounds like it's just the document store, but things on the internet make it sound like it's both the document and graph database. http://nosql.mypopescu.com/post/1254869909/correction-orientdb-is-a-document-and-graph-store

What is the difference between that and the graph edition? Does the graph edition just do graphing with nodes and edges, or is it the document graph database?

Update: What is the key value store version? How does it differ? Can you use alongside the other editions?

link|improve this question

80% accept rate
feedback

1 Answer

up vote 4 down vote accepted

OrientDB is a document-graph dbms because has the document-db features but handles relationships using direct links, not with JOINS like RDBMS.

So you can use the standard version to map even a graph. The Graph Edition is the Standard one with bundled the TinkerPop technology stack like the Gremlin language.

link|improve this answer
What is the Key Value store edition? I updated the question above. I heard Aaron Patterson had been working on a nice ruby implementation of a client, but I was going to try working out a ruby client using the REST api. – SpaceGhost Dec 13 '11 at 20:18
1  
Key Value edition is not more supported. We preferred to focus on the Document-Graph engine. However since OrientDB is very fast with indexes (it uses a new algorithm called MVRB-Tree) many users use OrientDB as key value engine, via HTTP or Binary protocol, creating a manual index: code.google.com/p/orient/wiki/OrientDB_REST#Index – Lvca Dec 17 '11 at 0:22
that's really awesome. Thanks for the second answer. – SpaceGhost Dec 20 '11 at 7:07
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.