graph database for pehpeh
Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.

22 rindas
343B

  1. package graph
  2. import (
  3. "github.com/cayleygraph/cayley"
  4. cg "github.com/cayleygraph/cayley/graph"
  5. )
  6. type Store interface {
  7. Create() error
  8. }
  9. func (s *store) Create() error {
  10. cg.InitQuadStore(srv.backend, srv.path, nil)
  11. store, err := cayley.NewGraph(s.backend, s.path, nil)
  12. if err != nil {
  13. return err
  14. }
  15. s.store = store
  16. return nil
  17. }