Popularity
2.6
Stable
Activity
0.0
Stable
27
3
9
Programming language: Go
neo4j alternatives and similar packages
Based on the "NoSQL Databases" category.
Alternatively, view neo4j alternatives based on common mentions on social networks and blogs.
-
gocql
Package gocql implements a fast and robust Cassandra client for the Go programming language. -
qmgo
Qmgo - The Go driver for MongoDB. It‘s based on official mongo-go-driver but easier to use like Mgo. -
mgm
Mongo Go Models (mgm) is a fast and simple MongoDB ODM for Go (based on official Mongo Go Driver) -
redeo
High-performance framework for building redis-protocol compatible TCP servers/services -
go-rejson
Golang client for redislabs' ReJSON module with support for multilple redis clients (redigo, go-redis) -
Kivik
Kivik provides a common interface to CouchDB or CouchDB-like databases for Go and GopherJS. -
godscache
An unofficial Google Cloud Platform Go Datastore wrapper that adds caching using memcached. For App Engine Flexible, Compute Engine, Kubernetes Engine, and more. -
rueidis
Fast Redis RESP3 client with auto pipelining and server-assisted client side caching.
Static code analysis for 29 languages.
Your projects are multi-language. So is SonarQube analysis. Find Bugs, Vulnerabilities, Security Hotspots, and Code Smells so you can release quality code every time. Get started analyzing your projects today for free.
Promo
www.sonarqube.org
Do you think we are missing an alternative of neo4j or a related project?
Popular Comparisons
README
neo4j.go
Implementation of client package for communication with Neo4j Rest API.
For more information and documentation please read Godoc Neo4j Page
setup
go get github.com/siesta/neo4j
example usage
Node:
neo4jConnection := Connect("")
node := &Node{}
node.Id = "2229"
err := neo4jConnection.Get(node)
fmt.Println(node)
Relationship:
neo4jConnection := Connect("")
rel := &Relationship{}
rel.Id = "2412"
neo4jConnection.Get(rel)