mirror of
https://github.com/etcd-io/bbolt.git
synced 2025-07-11 13:08:46 +00:00
11 lines
199 B
Go
11 lines
199 B
Go
package bolt
|
|
|
|
// info contains information about the database.
|
|
type info struct {
|
|
MapSize int
|
|
LastPageID int
|
|
LastTransactionID int
|
|
MaxReaders int
|
|
ReaderCount int
|
|
}
|