...

Source file src/go.etcd.io/bbolt/bolt_386.go

Documentation: go.etcd.io/bbolt

     1  package bbolt
     2  
     3  // maxMapSize represents the largest mmap size supported by Bolt.
     4  const maxMapSize = 0x7FFFFFFF // 2GB
     5  
     6  // maxAllocSize is the size used when creating array pointers.
     7  const maxAllocSize = 0xFFFFFFF
     8  

View as plain text