package
0.1.0
Repository: https://github.com/aspiesoft/db.git
Documentation: pkg.go.dev

# Functions

AddDataObj adds a new key value pair to the database, given a prefix note: this method also runs `File.Seek(0, io.SeekStart)`.
DelDataObj removes a key value pair from the database, given a prefix.
GetDataObj finds a key value pair in the database, given a prefix set the first byte of the key/val param to 0 to authorize the use of regex.
Open opens an existing database or creates a new one @bitSize tells the database what bit size to use (this value must always be consistent) - (default: 128) - (0 = default 128) - (min = 64) - (max = 64000) note: in debug mode, (min = 16) @prefixList tells the database what additional characters to preserve for the database object prefixes.
SetDataObj replaces an old key value pair with a new one note: it is your job to run the `File.Seek` method, and start at the correct position.

# Variables

No description provided by the author

# Structs

No description provided by the author
No description provided by the author