Tag

key-splitting

0 views collected around this technical thread.

Architect's Guide
Architect's Guide
Mar 18, 2025 · Databases

Strategies for Splitting Large Keys and Values in Redis

The article explains why large keys, oversized values, massive key counts, and huge Bitmaps or Bloom filters degrade Redis performance and provides practical splitting techniques—using multiple keys, hashes, bucketed hashing, and bitmap partitioning—to reduce memory pressure and improve response times.

BitmapBloom FilterRedis
0 likes · 8 min read
Strategies for Splitting Large Keys and Values in Redis
Code Ape Tech Column
Code Ape Tech Column
Nov 3, 2022 · Databases

Strategies for Splitting Large Keys and Values in Redis to Reduce Memory Usage and Latency

This article explains how to handle Redis scenarios with oversized keys, massive collections, billions of keys, and large bitmaps or Bloom filters by partitioning data into multiple keys or hashes, using bucketization, multi‑get, and careful bitmap splitting to improve performance and lower memory consumption.

BackendBitmapBloom Filter
0 likes · 8 min read
Strategies for Splitting Large Keys and Values in Redis to Reduce Memory Usage and Latency