Redis: Performance Powerhouse - Stream Optimization and Memory Fixes

Redis delivered some serious performance improvements today with 4 merged PRs and 3 additional commits. The star of the show is a massive XREADGROUP CLAIM optimization that boosted throughput by 28%, plus clever memory tracking fixes and hardware-optimized vector operations. Contributors skaslev, sggeorgiev, fcostaoliveira, and sundb all shipped meaningful improvements.

Duration: PT4M11S

Episode overview

This episode is a short developer briefing from Redis.

It explains recent repository work in plain language.

  • Show: Redis
  • Published: 2026-01-28T11:13:21Z
  • Audio duration: PT4M11S

Transcript excerpt

This excerpt keeps the crawler page concise. Listen to the episode or use the RSS feed for the full update.

Hey there, amazing developers! Welcome back to another episode of the Redis podcast. I'm your host, and wow, do we have some exciting updates to dig into today. Grab your favorite beverage because we're talking about some genuinely impressive performance wins and solid engineering fixes that landed in the Redis…

Let's jump right into the big story of the day - and honestly, this one made me do a little happy dance when I read through it. Sergei Georgiev just merged an absolutely brilliant optimization for Redis Streams that's going to make a lot of people very happy. We're talking about XREADGROUP CLAIM operations getting a…

The insight here is beautiful in its simplicity. The team realized that 99% of delivery time updates in consumer groups are just setting the value to the current time - essentially appending to the tail of a time-ordered structure. But Redis was using a radix tree for this, which meant O(k) operations where k is the…

And here's the cherry on top - this change actually uses less memory too. They're adding 32 bytes per entry for the linked list fields but removing the entire radix tree overhead, which was around 40-50 bytes per entry. So you're getting better…

Speak…

Nearby episodes from Redis

  1. HOTKEYS Gets Smarter in Cluster Mode
  2. Multi-Command Metrics and Replication Fixes
  3. SIMD Speed Boost and Privacy Protection
  4. Making Data Feel Natural - Maps, Memory, and Better APIs
  5. Performance Powerhouse - Vector Speed & Memory Magic
  6. Security First: Redis Gets Smarter About Warning You
  7. Memory Management Deep Dive
  8. Redis 8.6 RC1 Launch and Better Expiration Insights