Slide 81
Slide 81 text
メモリ使用量の増加への対処
キャッシュデータ保存時に圧縮処理を入れる
1KB 以上のキャッシュアイテムを gzencode で圧縮
81
if (len($setValue) > $this->config->threshold()) {
$setValue = $this->gzencode($setValue, $level);
}
$result = $this->redisCluster->set($key, $setValue, $expiration);