Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
View Source
var ( // Version release version Version = "0.0.1" // Commit will be overwritten automatically by the build system Commit = "HEAD" )
Functions ¶
func DirSize ¶
DirSize returns the space occupied by the given `path` on disk on the current file system.
func GetDatafiles ¶
GetDatafiles returns a list of all data files stored in the database path given by `path`. All datafiles are identified by the the glob `*.data` and the basename is represented by an monotomic increasing integer.
Types ¶
type Item ¶
type Item struct { FileID int `json:"fileid"` Offset int64 `json:"offset"` Size int64 `json:"size"` }
Item represents the location of the value on disk. This is used by the internal Adaptive Radix Tree to hold an in-memory structure mapping keys to locations on disk of where the value(s) can be read from.
Click to show internal directories.
Click to hide internal directories.