September 2026 Summaries
3 posts from Redis
Filter
Month:
Year:
Post Summaries
Back to Blog
Redis 8.10, now generally available in Redis Open Source, introduces efficiency, data-structure, query, and operational improvements aimed at large-scale deployments. Compact hash templates allow similarly structured hashes to share field names, reducing memory use by up to 50%, while HIMPORT can double bulk hash-loading throughput; additional optimizations improve hash writes and Stream reads and reduce memory use for deep Streams. Expanded JSONPath supports arithmetic, filtering, string and array functions, and aggregations, while Streams gain MAXCOUNT and MAXSIZE controls for bounding multi-stream read responses. New Set cardinality commands calculate union and difference sizes without retrieving members, Lists gain atomic multi-element movement options, and TimeSeries adds timestamp-grouped multi-series queries, blocking reads for incoming samples, and exclusion of empty results. The release also adds coordinated incremental backup and restore through new BACKUP commands, using staggered base snapshots and incremental AOF files to reduce CPU and memory spikes during Redis Cluster backups.
Sep 14, 2026
1,626 words in the original blog post.
Redis has introduced a Redis Development plugin for ChatGPT Work and Codex that supplies current engineering guidance directly within AI-assisted development workflows, helping teams build, review, and troubleshoot Redis applications without repeatedly consulting separate documentation. The plugin includes specialized skills covering core data modeling, connections, search and vector retrieval, semantic caching, clustering, security, observability, and Redis Agent Memory, with guidance for newer features such as LangCache and hybrid retrieval pipelines. Separately, OpenAI’s Data agent in ChatGPT Work can connect to approved Redis data sources, allowing users to investigate data and changes through natural-language questions. Redis reports that evaluations across multiple models showed improved pass rates and more direct responses when the skills were enabled. The plugin is available through supported ChatGPT Work and Codex interfaces, while the existing skills CLI remains supported for other agents, and its MIT-licensed repository accepts community contributions and feedback.
Sep 11, 2026
648 words in the original blog post.
Databricks Real-Time Mode (RTM) and Redis are presented as a complementary architecture for applications requiring continuous event processing and near-instant data serving, such as e-commerce recommendations that adapt during a user session. RTM extends Spark Structured Streaming with sub-second processing and p99 latency in the tens to low hundreds of milliseconds, allowing teams to use existing Spark APIs rather than operate a separate streaming engine, while Redis serves computed session state, recommendations, or scores through sub-millisecond reads and writes. In the described implementation, clickstream events enter Kafka, RTM sessionizes user activity and applies recency- and intent-weighted product scores, then a Spark ForeachWriter stores ranked recommendations and product metadata in Redis sorted sets and hashes with short TTLs. A benchmark using Azure Event Hubs and Azure Managed Redis reportedly sustained 100,000 events per second across 10,000 active users, achieving 157 ms p99 click-to-recommendation latency and approximately 530,000 Redis operations per second without evictions. The pattern is also positioned for fraud detection, online ML feature serving, inventory updates, fleet tracking, security operations, dashboards, and multi-agent coordination, with support across Databricks cloud deployments and several Redis management options.
Sep 03, 2026
1,872 words in the original blog post.