Software attributes
Other attributes
Description
RavenDB is an open-source fully ACID document-oriented database written in C#, developed by Hibernating Rhinos Ltd. It is cross-platform, supported on Windows, Linux, and Mac OS.[6] RavenDB stores data as JSON documents and can be deployed in distributed clusters with master-master replication.
Originally named "Rhino DivanDB", RavenDB began in 2008 as a project by Oren Eini (aka Ayende Rahien) and is developed by Hibernating Rhinos Ltd. The company claims it was the first document database to run natively in the .NET Framework. It was an early document database to offer ACID guarantees.
In 2019, Hibernating Rhinos began offering RavenDB as a cloud service named RavenDB Cloud.
System architecture
Data is stored as schemaless documents in JSON format. Documents are grouped into collections, with each document having exactly one collection.
Databases can be deployed on a distributed cluster of servers (called ‘nodes’) using multi-master replication. Some operations at the cluster level require a consensus of a majority of nodes; consensus is determined using an implementation of the Raft algorithm called Rachis. Tasks are distributed to the different nodes in a balanced way.
Clients are supported for C#, C++, Java, NodeJS, Python, Ruby, and Go.
Main features
- Cluster-wide ACID Transactions - ACID transactions can be executed at the scope of a cluster (in addition to single node transactions). The transaction will only be persisted if it is confirmed by a consensus of nodes; if it is not, the transaction is cancelled and rolled back.
- Distributed counters
Indexes and querying
Queries are expressed in LINQ or with a custom query language named RQL (stands for Raven Query Language) with syntax similar to SQL.
- Dynamic indexes - in RavenDB is that queries can only be satisfied by an index; if no appropriate index exists, a new index is created to satisfy the query.
- Graph querying - related documents can be treated as vertices in a graph, with the connections treated as edges. This makes it possible to create recursive queries.
- Projection - indexes can be configured to transform indexed data, perform calculations, perform aggregations, and execute JavaScript code on the server side.
- Full-text search - at a low level, data is indexed with Lucene.net, which means indexes support full-text search.

