Home
last modified time | relevance | path

Searched refs:BucketKV (Results 1 – 10 of 10) sorted by relevance

/dports/databases/cayley/cayley-0.7.5-2-gcf576ba/graph/kv/
H A Dquadstore.go39 type InitFunc func(string, graph.Options) (BucketKV, error)
40 type NewFunc func(string, graph.Options) (BucketKV, error)
83 db BucketKV
104 func newQuadStore(kv BucketKV) *QuadStore { argument
110 func Init(kv BucketKV, opt graph.Options) error { argument
131 func New(kv BucketKV, _ graph.Options) (graph.QuadStore, error) { argument
148 func setVersion(ctx context.Context, kv BucketKV, version int64) error { argument
H A Dkv.go66 type BucketKV interface { interface
76 func Update(ctx context.Context, kv BucketKV, update func(tx BucketTx) error) error { argument
88 func View(kv BucketKV, view func(tx BucketTx) error) error { argument
112 var _ BucketKV = (*flatKV)(nil)
114 func FromFlat(flat FlatKV) BucketKV {
H A Dquadstore_test.go266 db kv.BucketKV
/dports/databases/cayley/cayley-0.7.5-2-gcf576ba/graph/kv/btree/
H A Dbtree_test.go25 func makeBtree(t testing.TB) (kv.BucketKV, graph.Options, func()) {
H A Dbtree.go38 func Create(path string, _ graph.Options) (kv.BucketKV, error) {
/dports/databases/cayley/cayley-0.7.5-2-gcf576ba/graph/kv/leveldb/
H A Dleveldb.go53 func Create(path string, m graph.Options) (kv.BucketKV, error) {
69 func Open(path string, m graph.Options) (kv.BucketKV, error) {
H A Dleveldb_test.go27 func makeLeveldb(t testing.TB) (kv.BucketKV, graph.Options, func()) {
/dports/databases/cayley/cayley-0.7.5-2-gcf576ba/graph/kv/bolt/
H A Dbolt.go46 func Create(path string, _ graph.Options) (kv.BucketKV, error) {
59 func Open(path string, opt graph.Options) (kv.BucketKV, error) {
H A Dbolt_test.go27 func makeBolt(t testing.TB) (kv.BucketKV, graph.Options, func()) {
/dports/databases/cayley/cayley-0.7.5-2-gcf576ba/graph/kv/kvtest/
H A Dkvtest.go17 type DatabaseFunc func(t testing.TB) (kv.BucketKV, graph.Options, func())