From cb170160622ce2b68761f58b2dead5a9da1a65c7 Mon Sep 17 00:00:00 2001 From: Ben Johnson Date: Thu, 24 Jul 2014 11:25:25 -0600 Subject: [PATCH] Add FillPercent documentation. --- bucket.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/bucket.go b/bucket.go index 3176ae1..1ef0d5e 100644 --- a/bucket.go +++ b/bucket.go @@ -44,6 +44,8 @@ type Bucket struct { // Sets the threshold for filling nodes when they split. By default, // the bucket will fill to 50% but it can be useful to increase this // amount if you know that your write workloads are mostly append-only. + // + // This is non-persisted across transactions so it must be set in every Tx. FillPercent float64 }