All Projects → arangodb → Arangodb

arangodb / Arangodb

Licence: apache-2.0
🥑 ArangoDB is a native multi-model database with flexible data models for documents, graphs, and key-values. Build high performance applications using a convenient SQL-like query language or JavaScript extensions.

Programming Languages

C++
36643 projects - #6 most used programming language
javascript
184084 projects - #8 most used programming language
ruby
36898 projects - #4 most used programming language
c
50402 projects - #5 most used programming language
CMake
9771 projects
SCSS
7915 projects

Projects that are alternatives of or similar to Arangodb

docs
Source code of the ArangoDB online documentation
Stars: ✭ 18 (-99.85%)
Mutual labels:  nosql, key-value, graph-database, graphdb, distributed-database, document-database, multi-model, arangodb
Neo4j
Graphs for Everyone
Stars: ✭ 9,582 (-19.34%)
Mutual labels:  database, nosql, graph-database, graphdb
Pyarango
Python Driver for ArangoDB with built-in validation
Stars: ✭ 183 (-98.46%)
Mutual labels:  database, nosql, graph-database, arangodb
Orientdb
OrientDB is the most versatile DBMS supporting Graph, Document, Reactive, Full-Text and Geospatial models in one Multi-Model product. OrientDB can run distributed (Multi-Master), supports SQL, ACID Transactions, Full-Text indexing and Reactive Queries. OrientDB Community Edition is Open Source using a liberal Apache 2 license.
Stars: ✭ 4,394 (-63.01%)
Mutual labels:  database, nosql, graph-database, document-database
Cog
A Persistent Embedded Graph Database for Python
Stars: ✭ 90 (-99.24%)
Mutual labels:  database, nosql, key-value, graph-database
skytable
Skytable is an extremely fast, secure and reliable real-time NoSQL database with automated snapshots and TLS
Stars: ✭ 696 (-94.14%)
Mutual labels:  nosql, distributed-database, document-database, multi-model
Ardb
A redis protocol compatible nosql, it support multiple storage engines as backend like Google's LevelDB, Facebook's RocksDB, OpenLDAP's LMDB, PerconaFT, WiredTiger, ForestDB.
Stars: ✭ 1,707 (-85.63%)
Mutual labels:  database, nosql, key-value
Xodus
Transactional schema-less embedded database used by JetBrains YouTrack and JetBrains Hub.
Stars: ✭ 864 (-92.73%)
Mutual labels:  database, nosql, key-value
Unqlite
An Embedded NoSQL, Transactional Database Engine
Stars: ✭ 1,583 (-86.68%)
Mutual labels:  database, nosql, key-value
Zookeeper
Apache ZooKeeper
Stars: ✭ 10,061 (-15.31%)
Mutual labels:  database, key-value, distributed-database
Agensgraph
AgensGraph, a transactional graph database based on PostgreSQL
Stars: ✭ 1,056 (-91.11%)
Mutual labels:  nosql, graph-database, graphdb
Gkvdb
[mirror] Go语言开发的基于DRH(Deep-Re-Hash)深度哈希分区算法的高性能高可用Key-Value嵌入式事务数据库。基于纯Go语言实现,具有优异的跨平台性,良好的高可用及文件IO复用设计,高效的底层数据库文件操作性能,支持原子操作、批量操作、事务操作、多表操作、多表事务、随机遍历等特性。
Stars: ✭ 109 (-99.08%)
Mutual labels:  database, nosql, key-value
Libmdbx
One of the fastest embeddable key-value ACID database without WAL. libmdbx surpasses the legendary LMDB in terms of reliability, features and performance.
Stars: ✭ 729 (-93.86%)
Mutual labels:  database, nosql, key-value
Corfudb
A cluster consistency platform
Stars: ✭ 539 (-95.46%)
Mutual labels:  database, nosql, distributed-database
Keyvast
KeyVast - A key value store
Stars: ✭ 33 (-99.72%)
Mutual labels:  database, nosql, key-value
Arangojs
The official ArangoDB JavaScript driver.
Stars: ✭ 503 (-95.77%)
Mutual labels:  database, nosql, arangodb
Ejdb
🏂 EJDB 2.0 — Embeddable JSON Database engine C library. Simple XPath like query language (JQL). Websockets / Android / iOS / React Native / Flutter / Java / Dart / Node.js bindings. Docker image.
Stars: ✭ 1,187 (-90.01%)
Mutual labels:  database, nosql, key-value
Redisgraph
A graph database as a Redis module
Stars: ✭ 1,292 (-89.12%)
Mutual labels:  nosql, graph-database, graphdb
Badger
Fast key-value DB in Go.
Stars: ✭ 10,127 (-14.76%)
Mutual labels:  database, key-value, document-database
Bitnami Docker Redis
Bitnami Redis Docker Image
Stars: ✭ 317 (-97.33%)
Mutual labels:  database, nosql, key-value

ArangoDB-Logo

ArangoDB

Slack: ArangoDB-Logo

ArangoDB is a scalable open-source multi-model database natively supporting graph, document and search. All supported data models & access patterns can be combined in queries allowing for maximal flexibility. ArangoDB runs on prem, in the cloud – anywhere.

ArangoDB Cloud Service

Oasis is the simplest way to run ArangoDB. Users can make deployments on all major cloud providers in many regions. Test ArangoDBs Cloud Service Oasis for free.

Getting Started

For the impatient:

  • Start the ArangoDB Docker container

    docker run -e ARANGO_ROOT_PASSWORD=test123 -p 8529:8529 -d arangodb/arangodb
    
  • Alternatively, download and install ArangoDB. Start the server arangod if the installer did not do it for you.

  • Point your browser to http://127.0.0.1:8529/

Key Features in ArangoDB

  • Multi-Model: Documents, graphs and key-value pairs — model your data as you see fit for your application.
  • Joins: Conveniently join what belongs together for flexible ad-hoc querying, less data redundancy.
  • Transactions: Easy application development keeping your data consistent and safe. No hassle in your client.

Here is an AQL query that makes use of all those features:

AQL Query Example

Joins and transactions are key features for flexible, secure data designs, widely used in relational databases but lacking in many NoSQL products. However, there is no need to forgo them in ArangoDB. You decide how and when to use joins and strong consistency guarantees, without sacrificing performance and scalability.

Furthermore, ArangoDB offers a JavaScript framework called Foxx that is executed in the database server with direct access to the data. Build your own data-centric microservices with a few lines of code. By extending the HTTP API with user code written in JavaScript, ArangoDB can be turned into a strict schema-enforcing persistence engine.

Other features of ArangoDB include:

  • Horizontal scalability: ArangoDB will seamlessly shard your data horizontally across multiple machines.
  • Use a data-centric microservices approach with ArangoDB Foxx and fuse your application-logic and database together for maximal throughput
  • JavaScript for all: no language zoo, you can use one language from your browser to your back-end
  • Flexible data modeling: model your data as combination of key-value pairs, documents or graphs - perfect for social relations
  • Powerful query language (AQL) to retrieve and modify data
  • Transactions: run queries on multiple documents or collections with optional transactional consistency and isolation
  • Replication and Sharding: set up the database in a master-slave configuration or spread bigger datasets across multiple servers
  • Configurable durability: let the application decide if it needs more durability or more performance
  • Schema-free schemata let you combine the space efficiency of MySQL with the performance power of NoSQL
  • index support: exploit the perfect index types for your different use cases, including document queries, graph queries, geo location queries, and fulltext searches
  • ArangoDB is multi-threaded - exploit the power of all your cores
  • Easy to use web interface and command-line client tools for interaction with the server
  • It is open source (Apache License 2.0)

For more in-depth information read the design goals of ArangoDB

Latest Release

Packages for all supported platforms can be downloaded from https://www.arangodb.com/download.

Please also check what's new in ArangoDB.

More Information

See our documentation for detailed installation & compilation instructions.

There is an introductory chapter showing the basic operation of ArangoDB. To learn ArangoDB's query language check out the AQL tutorial.

Stay in Contact

We really appreciate feature requests and bug reports. Please use our Github issue tracker for reporting them:

https://github.com/arangodb/arangodb/issues

You can use our Google group for improvements, feature requests, comments:

https://www.arangodb.com/community

StackOverflow is great for questions about AQL, usage scenarios etc.

https://stackoverflow.com/questions/tagged/arangodb

To chat with the community and the developers we offer a Slack chat:

https://slack.arangodb.com/

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].