我正在寻找一种在PHP内存中存储大量布尔值(最高2.5 * 10e11)的有效方法。我的第一个想法是创建一个整数数组,并在每个整数中每位存储一个布尔值:
// number of booleans to store
$n = 2.5 * pow(10, 11);
// bits per integer
$bitsPerInt = PHP_INT_SIZE * 8;
// init storage
$storage = array();
for ($i=0; $i<ceil($n/$bitsPerInt); $i++) {
$storage[$i] = 0;
}
// bits in each integer can be accessed using PHP's bitwise operators
然而,这个解决方案的开销仍然太大:在32位环境中存储10 ^ 8个布尔值(位)(PHP_INT_SIZE = 4个字节)需要一个3125000个整数的数组,消耗大约254 MB的内存,而10 ^ 8布尔的罕见数据只需要~12 MB。
那么在PHP(5)中存储大量布尔值的最佳方法是什么?