package
2.23.0+incompatible
Repository: https://github.com/mudler/localai.git
Documentation: pkg.go.dev

# Functions

DeleteCols deletes multiple key-value pairs from the store It's in columnar format so that keys[i] is associated with values[i].
DeleteSingle deletes a single key-value pair from the store Don't call this in a tight loop, instead use DeleteCols.
Find similar keys to the given key.
GetCols gets multiple key-value pairs from the store It's in columnar format so that keys[i] is associated with values[i] Be warned the keys are sorted and will be returned in a different order than they were input There is no guarantee as to how the keys are sorted.
GetSingle gets a single key-value pair from the store Don't call this in a tight loop, instead use GetCols.
SetCols sets multiple key-value pairs in the store It's in columnar format so that keys[i] is associated with values[i].
SetSingle sets a single key-value pair in the store Don't call this in a tight loop, instead use SetCols.