1 package bbolt 2 3 // maxMapSize represents the largest mmap size supported by Bolt. 4 const maxMapSize = 0xFFFFFFFFFFFF // 256TB 5 6 // maxAllocSize is the size used when creating array pointers. 7 const maxAllocSize = 0x7FFFFFFF 8
View as plain text