Redis: Closing Startup Gaps and Cleaning House

Today's activity centers on fixing a Unix socket startup bug that could silently strand a running server, alongside a batch of maintenance work: a new CVE reachability check, a stale TLS doc correction, and a performance fix for the hotkeys command.

Duration: PT2M39S

Episode overview

This episode is a short developer briefing from Redis.

It explains recent repository work in plain language.

  • Show: Redis
  • Published: 2026-07-31T13:11:59Z
  • Audio duration: PT2M39S

Transcript excerpt

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

Good morning. It's July 31st, 2026, and this is your Redis briefing.

The headline today is a subtle but serious startup bug fix. In PR 15537, ShooterIT and Yuan Wang addressed a case where a second Redis process, using the same Unix socket path as a running instance, could unlink and replace that socket before failing to start itself, for example while trying to set up a TLS…

Three smaller efforts round out the day. First, housekeeping on trust and documentation: PR 15560 from jkleinlercher adds a manually triggered pipeline to check whether a given Redis build actually references the OpenSSL function tied to CVE-2026-28390. It's CI and tooling only, no runtime code changes, but it gives…

Finally, a performance cleanup: PR 15561 from minchopaskal fixes a quadratic time bug in the hotkeys command. Duplicate slot checks were being done with a linear scan during parsing, which scales poorly given slots can number up to sixteen thousand. Moving the duplicate check after the existing sort step turns that…

What's next: watch for the CVE reachability workflow to get used in future security triage, and expect the hotkeys fix to matter most for large cluster deployments.

That's your Redis…

Nearby episodes from Redis

  1. TLS Hardening and the Road to 8.10
  2. Hardening the Trust Boundaries
  3. Correctness Fixes Converge on Edge Cases
  4. Hardening Edge Cases Across the Core
  5. Weekly Recap - Security Patches and Replication Reliability
  6. Hardening the Core, One Edge Case at a Time
  7. Array Commands Expand, Correctness Fixes Land
  8. Security Patches and Replication Hardening