mirror of
https://github.com/etcd-io/bbolt.git
synced 2025-05-27 17:51:57 +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
|
|
}
|