Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/kevinmichaelchen/golang-neo4j-parallel-writes
Using Golang to write to Neo4j
https://github.com/kevinmichaelchen/golang-neo4j-parallel-writes
golang neo4j
Last synced: about 2 months ago
JSON representation
Using Golang to write to Neo4j
- Host: GitHub
- URL: https://github.com/kevinmichaelchen/golang-neo4j-parallel-writes
- Owner: kevinmichaelchen
- Created: 2022-08-04T15:29:23.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2022-08-04T17:03:52.000Z (over 2 years ago)
- Last Synced: 2024-06-20T22:19:11.267Z (7 months ago)
- Topics: golang, neo4j
- Language: Go
- Homepage:
- Size: 6.84 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## Getting started
### Start neo4j
```bash
mkdir -p $HOME/neo4j/datadocker run \
-d \
-p 7474:7474 \
-p 7687:7687 \
-v $HOME/neo4j/data:/data \
neo4j:latest
```### Run Go code
```
go run main.go
```## Performance Benchmarking
Need to compare with index vs without index.```
CREATE INDEX idx_action_time FOR (n:Action) ON (n.time)
```