aboutsummaryrefslogtreecommitdiff
path: root/db.go
diff options
context:
space:
mode:
authorBen Johnson <benbjohnson@yahoo.com>2014-05-15 14:21:17 -0600
committerBen Johnson <benbjohnson@yahoo.com>2014-05-15 14:21:17 -0600
commit6840e4f3dcf9cf82c6ed891e642b4c1cb1d29ee9 (patch)
tree7ca8faaae8099222c0c7964eee3e0a95dea5bd51 /db.go
parentAdd option to adjust fill percentage. (diff)
downloaddedo-6840e4f3dcf9cf82c6ed891e642b4c1cb1d29ee9.tar.gz
dedo-6840e4f3dcf9cf82c6ed891e642b4c1cb1d29ee9.tar.xz
Change verbiage, fix node test.
Diffstat (limited to 'db.go')
-rw-r--r--db.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/db.go b/db.go
index 5488334..c768ce3 100644
--- a/db.go
+++ b/db.go
@@ -63,9 +63,9 @@ type DB struct {
// debugging purposes.
StrictMode bool
- // Sets the threshold for filling pages when they split. By default,
+ // Sets the threshold for filling nodes when they split. By default,
// the database will fill to 50% but it can be useful to increase this
- // amount if you know that your write workloads are typically append-only.
+ // amount if you know that your write workloads are mostly append-only.
FillPercent float64
path string