1
2
mirror of https://github.com/vimagick/dockerfiles synced 2024-06-20 05:48:42 +00:00
dockerfiles/neo4j/README.md
2021-09-23 15:53:51 +08:00

26 lines
568 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

neo4j
=====
[Neo4j][1] is a highly scalable native graph database that leverages data
relationships as first-class entities, helping enterprises build intelligent
applications to meet todays evolving data challenges.
## up and running
```bash
$ docker-compose up -d
$ docker-compose exec neo4j bin/neo4j-shell
>>> man
>>> export person_id="123"
>>> env
>>> create index on :Person(id);
>>> create (p:Person {id: {person_id}}) return p;
>>> match (p:Person {id: {person_id}}) return p;
>>> exit
$ curl http://localhost:7474/browser/
```
[1]: http://neo4j.com/