tecbot / gorocksdb

gorocksdb is a Go wrapper for RocksDB
http://rocksdb.org
MIT License
940 stars 269 forks source link

Workaround for Linux 32-bit build #173

Closed michilu closed 5 years ago

michilu commented 5 years ago

fixes #145

The maximum capacity of the following two slices is limited to (2^29)-1 to remain compatible with 32-bit platforms. The size of a *C.char (a pointer) is 4 Byte on a 32-bit system and (2^29)*4 == math.MaxInt32 + 1.

refs: