diff options
author | Ben Johnson <benbjohnson@yahoo.com> | 2014-07-24 11:25:25 -0600 |
---|---|---|
committer | Ben Johnson <benbjohnson@yahoo.com> | 2014-07-24 11:25:25 -0600 |
commit | cb170160622ce2b68761f58b2dead5a9da1a65c7 (patch) | |
tree | 8082796f45131be814281ffd2b3acefab92d2656 /bucket.go | |
parent | Change fill percent to be per-bucket. (diff) | |
download | dedo-cb170160622ce2b68761f58b2dead5a9da1a65c7.tar.gz dedo-cb170160622ce2b68761f58b2dead5a9da1a65c7.tar.xz |
Add FillPercent documentation.
Diffstat (limited to 'bucket.go')
-rw-r--r-- | bucket.go | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -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 } |