lower MaxValue to 2GB

This commit changes the maximum value size to 2GB so that tests can
run on 32-bit machines. There's really no reason to write a 2GB+
value to Bolt. It's not terribly efficient for large values.
pull/34/head
Ben Johnson 2015-10-28 12:16:16 -06:00
parent a54ef72d71
commit 1786b6ae2f
1 changed files with 1 additions and 1 deletions

View File

@ -11,7 +11,7 @@ const (
MaxKeySize = 32768
// MaxValueSize is the maximum length of a value, in bytes.
MaxValueSize = 4294967295
MaxValueSize = (1 << 31) - 2
)
const (