ArangoDB Introduction 1. ArangoDB introduction ArangoDB is an open-source NoSQL database. Official Website: www.ArangoDB.org allows you to flexibly use key-value pairs, documents, graphs, and their combinations to build your data model. 2) query convenience ArangoDB has an AQL Query Language similar to SQL, and can also be queried through REST. 3) Introduction to ArangoDB through Java 1
ArangoDB is an open-source NoSQL database. its official website is www.arangodb.org/which allows you to use the key-Value Pair document and build your data model.
2) convenient query
ArangoDB has an AQL Query Language similar to SQL, and can also be queried through REST.
3) extensions can be made through JavaScript.
There is no language restriction. You can use the same language from the frontend to the backend.
4) High Performance
ArangoDB is extremely fast
5) Foxx-build your own API
Build applications with JavaScript and ArangoDB, and run Foxx inside the DB to quickly access data.
6) high space utilization
Compared with other document databases, ArangoDB consumes less storage space, because ArangoDB is a free metadata mode.
7) ease of use
ArangoDB can be started and run in a few seconds. You can also use a graphical interface to manage your ArangoDB.
8) Multi-OS support
ArangoDB supports Windows, Linux, OSX, and Raspberry Pi.
9) open source and free
ArangoDB is open-source and free of charge. It adopts the Apache 2 license protocol.
10) Copy
ArangoDB supports master-slave Clusters
2. Install ArangoDB here. The Windows version of ArangoDB is used as an example.
D: \ database \ ArangoDB \ bin> arangod -- install-service INFO: adding service 'arangodb-the multi-purpose database' (internal 'arangdatabase') INFO: added service with command line '"D: \ database \ ArangoDB \ bin \ arangod.exe" -- start-Service'
Iii. ArangoDB program Introduction
1. arangod
It is the daemon of the ArangoDB database. After running, it is the daemon of the ArangoDB database server.
2. arangosh
ArangoDB Shell environment.
3. arangoimp
ArangoDB Database Import Tool
4. arangodump
ArangoDB Database Backup Tool
5. arangorestore
ArangoDB database restoration Tool
6. foxx-manager
A Shell script to manage Foxx applications
7. arango-dfdb
ArangoDB data file Debugger
8. arangob
ArangoDB's testing and scoring tools are mainly used for the development and testing of ArangoDB.
The above is the content for getting started with the ArangoDB database. For more information, see the PHP Chinese website (www.php1.cn )!