diff options
author | Ben Johnson <benbjohnson@yahoo.com> | 2014-02-10 16:58:16 -0700 |
---|---|---|
committer | Ben Johnson <benbjohnson@yahoo.com> | 2014-02-10 16:58:16 -0700 |
commit | a68bd301db09ef5465f12ff4242696799da5b14d (patch) | |
tree | b6dc2efd0908df4ca7ff270181e46a1e4d85a77c /bucket.go | |
parent | Clean up. (diff) | |
parent | Add freelist. (diff) | |
download | dedo-a68bd301db09ef5465f12ff4242696799da5b14d.tar.gz dedo-a68bd301db09ef5465f12ff4242696799da5b14d.tar.xz |
Merge pull request #20 from benbjohnson/freelist
Freelist
Diffstat (limited to 'bucket.go')
-rw-r--r-- | bucket.go | 14 |
1 files changed, 0 insertions, 14 deletions
@@ -23,17 +23,3 @@ func (b *Bucket) cursor() *Cursor { stack: make([]pageElementRef, 0), } } - -func (b *Bucket) Stat() *Stat { - // TODO: Calculate size, depth, page count (by type), entry count, readers, etc. - return nil -} - -type Stat struct { - PageSize int - Depth int - BranchPageCount int - LeafPageCount int - OverflowPageCount int - EntryCount int -} |