mirror of https://github.com/etcd-io/bbolt.git
15 lines
307 B
Go
15 lines
307 B
Go
package bolt
|
|
|
|
const version = 1
|
|
|
|
const (
|
|
// MaxBucketNameSize is the maximum length of a bucket name, in bytes.
|
|
MaxBucketNameSize = 255
|
|
|
|
// MaxKeySize is the maximum length of a key, in bytes.
|
|
MaxKeySize = 32768
|
|
|
|
// MaxValueSize is the maximum length of a value, in bytes.
|
|
MaxValueSize = 4294967295
|
|
)
|