Compression however is easy to implement in Drupal, see https://git.drupalcode.org/project/redis#drupal-redis-settings ```php $settings['redis_compress_length'] = 100; $settings['redis_compress_level'] = 6; ``` The impact of using compression is equivalent to at least doubling the size of redis for the cost of a few CPU cycles.
Compression however is easy to implement in Drupal, see https://git.drupalcode.org/project/redis#drupal-redis-settings
The impact of using compression is equivalent to at least doubling the size of redis for the cost of a few CPU cycles.