diff options
author | Ben Johnson <benbjohnson@yahoo.com> | 2015-10-28 12:20:47 -0600 |
---|---|---|
committer | Ben Johnson <benbjohnson@yahoo.com> | 2015-10-28 12:20:47 -0600 |
commit | b95be7b997d4b8a18e74c24007adf627673eded5 (patch) | |
tree | 6f4916d8338bbac18056df2ae0b7b2e287e2927e | |
parent | Merge branch 'hvnsweeting-hvn-fix-doc' (diff) | |
parent | lower MaxValue to 2GB (diff) | |
download | dedo-b95be7b997d4b8a18e74c24007adf627673eded5.tar.gz dedo-b95be7b997d4b8a18e74c24007adf627673eded5.tar.xz |
Merge pull request #447 from benbjohnson/max-value-size
Lower MaxValue to 2GB
-rw-r--r-- | bucket.go | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -11,7 +11,7 @@ const ( MaxKeySize = 32768 // MaxValueSize is the maximum length of a value, in bytes. - MaxValueSize = 4294967295 + MaxValueSize = (1 << 31) - 2 ) const ( |