You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jan 28, 2021. It is now read-only.
// IndexDriver manages the coordination between the indexes and their// representation in disk.typeIndexDriverinterface {
// ID returns the unique name of the driver.ID() string// Create a new index.Create(path, table, db, idstring, exprs []Expression) (Index, error)
// Load the index at the given path.Load(pathstring) (Index, error)
// Save the given index at the given path.Save(ctx context.Context, pathstring, indexIndex, iterIndexKeyValueIter) error// Delete the index with the given path.Delete(pathstring, indexIndex) error
}