aboutsummaryrefslogtreecommitdiff
path: root/const.go
blob: 9ad7d256c887eaeb9b65b676c76e6f95d402f638 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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
)