Ejemplo n.º 1
0
func init() {
	graph.RegisterTripleStore("mongo", newTripleStore, createNewMongoGraph)
}
Ejemplo n.º 2
0
func init() {
	graph.RegisterTripleStore("memstore", func(string, graph.Options) (graph.TripleStore, error) {
		return newTripleStore(), nil
	}, nil)
}
Ejemplo n.º 3
0
func init() {
	graph.RegisterTripleStore("leveldb", newTripleStore, createNewLevelDB)
}
Ejemplo n.º 4
0
func init() {
	graph.RegisterTripleStore("bolt", true, newQuadStore, createNewBolt)
}