aboutsummaryrefslogtreecommitdiff
path: root/info.go
blob: d9642a5fb24a89e548eda9ea16731239ac20692f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
package bolt

// info contains information about the database.
type info struct {
	MapSize           int
	LastPageID        int
	LastTransactionID int
	MaxReaders        int
	ReaderCount       int
}