From a901cf6a25d301c6c67da3f8f1e51ca2f9c25bd4 Mon Sep 17 00:00:00 2001 From: Ben Johnson Date: Fri, 31 Jan 2014 12:22:58 -0500 Subject: Clean up API. --- const.go | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'const.go') diff --git a/const.go b/const.go index 58640ee..fce1051 100644 --- a/const.go +++ b/const.go @@ -1,8 +1,9 @@ package bolt -const Version = 1 +const version = 1 const ( - MaxKeySize = 0x8000 - MaxDataSize = 0xffffffff + MaxBucketNameSize = 255 + MaxKeySize = 32768 + MaxDataSize = 4294967295 ) -- cgit v1.2.3