Merge pull request #447 from benbjohnson/max-value-size

Lower MaxValue to 2GB
pull/34/head
Ben Johnson 2015-10-28 12:20:47 -06:00
commit b95be7b997
1 changed files with 1 additions and 1 deletions

View File

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