aboutsummaryrefslogtreecommitdiff
path: root/db.go
diff options
context:
space:
mode:
authorMartin Kobetic <mkobetic@gmail.com>2014-06-18 18:10:42 +0000
committerMartin Kobetic <mkobetic@gmail.com>2014-06-18 18:10:42 +0000
commit8a386756dffec5c6f37e09ae6c96a82351fba36e (patch)
treec71ca330eea56da7de76044b1f110bc808e81805 /db.go
parentMerge pull request #199 from kardianos/patch-1 (diff)
downloaddedo-8a386756dffec5c6f37e09ae6c96a82351fba36e.tar.gz
dedo-8a386756dffec5c6f37e09ae6c96a82351fba36e.tar.xz
fix up freelist stats naming and add FreeAlloc
Diffstat (limited to 'db.go')
-rw-r--r--db.go5
1 files changed, 3 insertions, 2 deletions
diff --git a/db.go b/db.go
index 13bfb16..e88e499 100644
--- a/db.go
+++ b/db.go
@@ -557,8 +557,9 @@ func (db *DB) allocate(count int) (*page, error) {
// Stats represents statistics about the database.
type Stats struct {
// Freelist stats
- FreelistN int // total number of pages on the freelist
- FreelistAlloc int // total bytes used by the freelist and the pages on it
+ FreePageN int // total number of free pages
+ FreeAlloc int // total bytes allocated in free pages
+ FreelistInuse int // total bytes used by the freelist
// Transaction stats
TxN int // total number of started read transactions