graph database for pehpeh
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

123456789101112131415161718192021
  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. }