blob: e32587e06eae14677c49740488a6a4975c125c93 (
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
}
|