Hi all
I want to use graphdb for my golang project. Which graphdb would you recommended?
Consider libraries supported. I think neo4j would be a good choice.
Thanks
评论:
mdyminski:
dreadyfire:Have a look at https://github.com/google/cayley it's graphDb written by google in Go.
mdyminski:If I read it correctly this is not a complete Database, since you have to give it a backend. Am I wrong?
iceberg_ssj:I don't have too much experience with cayley, but yes - it uses other DB as storage. So you are right : )
pkieltyka:It has its own in memory and leveldb that come by default. It can use any key value store as a back end that you make an interface for. Its not terribly complete some querying features feel missing and labels don't have functionality.
dreadyfire:all databases have layers that make it up. storage engine to disk, the structures actually stored in the storage engine, indexes, query interface. It wouldnt make sense for cayley to make their own storage engine, they should use the any number of great ones being developed already. So it's actually a good thing.
dreadyfire:I cant get it out of the docs, but if I see it correctly there is no native Golang driver for Cayley? EDIT: I found the Wiki Page for APIs https://github.com/google/cayley/wiki/Client-APIs Golang seems not to be listed
Geek4U_Inc:
dreadyfire:I prefer Titan DB over Neo4J due to better/more robust HA architecture
bachp:Titan seems really nice, but can you point to any Go drivers or a way to access the database with Golang?
You might want to have a look at https://www.arangodb.com/. It's multi purpose database but it supports graphs quite nicely. Beside the standard HTTP API there is a Go driver but I never used it so I can't comment on the quality.
