mirror of
https://github.com/featurebasedb/featurebase.git
synced 2026-08-28 10:54:59 +00:00
Merge pull request #1484 from codysoyland/fix-default-map-size-var
Unexport DefaultMapSize on 32-bit
This commit is contained in:
commit
2d903e329f
1 changed files with 2 additions and 2 deletions
|
|
@ -1,5 +1,5 @@
|
|||
package pilosa
|
||||
|
||||
// DefaultMapSize is the default size of mapped memory for the translate store.
|
||||
// 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
|
||||
const defaultMapSize = (1 << 31) - 1 // 2GB
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue