mirror of
https://github.com/featurebasedb/featurebase.git
synced 2026-08-28 10:54:59 +00:00
5 lines
204 B
Go
5 lines
204 B
Go
package pilosa
|
|
|
|
// DefaultMapSize is the default size of mapped memory for the translate store.
|
|
// It is passed as an int to syscall.Mmap and so must be < 2^31
|
|
const DefaultMapSize = (1 << 31) - 1 // 2GB
|