https://github.com/soujava/arangodb-java-2025
This repository introduces ArangoDB with java and Eclipse JNoSQL [2025]
https://github.com/soujava/arangodb-java-2025
Last synced: 3 months ago
JSON representation
This repository introduces ArangoDB with java and Eclipse JNoSQL [2025]
- Host: GitHub
- URL: https://github.com/soujava/arangodb-java-2025
- Owner: soujava
- License: apache-2.0
- Created: 2025-01-02T19:28:55.000Z (6 months ago)
- Default Branch: main
- Last Pushed: 2025-01-14T19:52:11.000Z (5 months ago)
- Last Synced: 2025-01-14T19:58:17.411Z (5 months ago)
- Language: Java
- Size: 58.6 KB
- Stars: 0
- Watchers: 13
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.adoc
- License: LICENSE
Awesome Lists containing this project
README
= arangodb-java-2025
:toc: autoimage::http://www.jnosql.org/img/logos/ArangoDB.png[ArangoDB, width=200px]
**ArangoDB**: ArangoDB is a native multi-model database system developed by triAGENS GmbH. The database system supports three important data models (key/value, documents, graphs) with one database core and a unified query language AQL (ArangoDB Query Language). The query language is declarative and allows the combination of different data access patterns in a single query. ArangoDB is a NoSQL database system but AQL is similar in many ways to SQL.
== How to install with Docker
image::https://d1q6f0aelx0por.cloudfront.net/product-logos/library-docker-logo.png[]
* Install docker: https://www.docker.com/
* https://hub.docker.com/_/arangodb
* Run docker command:[source, bash]
----
docker run -e ARANGO_NO_AUTH=1 -d --name arangodb-instance -p 8529:8529 -d arangodb/arangodb
----