posting velocity //
Based on 51 events over 73 days. Green days had more opens than closes, red vice-versa. The dark line is the 7-day rolling average.
Window: 180 days back. Don't read the mean — the long tail biases it. Median and percentiles are the honest summary.
Republish rate
2.0%
4 / 198 of closed jobs reposted within 60 days
The primary product line of Redis consists of the Redis open-source database engine, Redis Stack (the bundled commercial distribution), and Redis Cloud (the fully managed Database-as-a-Service offering). The open-source Redis project remains the most widely deployed in-memory data store in the world, with over 60,000 GitHub stars as of 2024 and inclusion in the default package repositories of virtually every major Linux distribution.
The problem Redis solves is latency and throughput at scale in stateful application layers. Relational databases such as PostgreSQL and MySQL persist data to disk, and at transaction rates exceeding tens of thousands of operations per second, disk I/O becomes a hard bottleneck. Redis eliminates that bottleneck by keeping the full working dataset in DRAM, which delivers round-trip read/write latencies in the sub-millisecond range — typically under 1 millisecond at the 99th percentile under production load. Beyond raw speed, Redis's native support for complex data structures (sorted sets for leaderboards, streams for event sourcing, pub/sub for real-time messaging) means application developers can implement patterns directly in the database without additional transformation logic.
The buyers of Redis Cloud and Redis Enterprise are primarily DevOps engineers, platform engineers, and software architects, with purchase authority frequently residing with VP of Engineering or CTO in mid-market companies, and with dedicated database or infrastructure teams in large enterprises. Vertically, the strongest customer concentrations are in financial services (payment processing, fraud detection, trading platforms), online gaming (leaderboards, session management), e-commerce (cart management, inventory caching), and SaaS platforms (rate limiting, API caching). The developer-first go-to-market also attracts a large base of individual developers and startups.
Redis is sold through two primary motions. The self-serve track allows developers to create a free Redis Cloud account, provision a database within minutes, and upgrade to paid plans as their workload grows — this bottom-up motion has historically driven a significant portion of new ARR. The enterprise sales track uses a field sales organization of Account Executives and Solutions Architects to close contracts with large organizations, particularly those requiring compliance certifications, dedicated infrastructure, or the Active-Active geo-replication capabilities exclusive to Redis Enterprise. Redis Cloud is also available for purchase through AWS Marketplace, Google Cloud Marketplace, and Microsoft Azure Marketplace, allowing customers to consume spend against their committed cloud contracts.
Redis Cloud pricing is consumption-based, combining dataset size (measured in GB of RAM), throughput measured in operations per second, and availability tier (single-zone versus multi-zone). The Essentials tier starts at approximately $7 per month for 250 MB of RAM. Redis Cloud Pro is priced on a per-GB basis for larger workloads, typically in the range of $0.40 to $0.80 per GB-hour depending on cloud provider and region. Redis Cloud Enterprise pricing is not publicly disclosed and is negotiated as an annual contract.
The core technical moat of Redis Inc. rests on three pillars. First, the single-threaded event loop architecture of the Redis engine, combined with asynchronous I/O, delivers deterministic sub-millisecond latency that disk-backed systems cannot match without hardware acceleration. Second, the Active-Active geo-replication technology in Redis Enterprise, based on Conflict-free Replicated Data Types (CRDTs), was developed by the Tel Aviv R&D team and is protected by patents — it allows multi-region writes without conflict resolution errors, a capability that competing managed services do not natively offer. Third, the RediSearch module (part of Redis Stack) implements a purpose-built inverted index in C that delivers full-text search and vector similarity search at latencies far below what Elasticsearch or dedicated vector databases typically achieve for smaller datasets.
The engineering organization works primarily in C (the Redis core), Go (Redis Enterprise cluster management layer), and Python (tooling, SDKs, test infrastructure). The RediSearch and RedisJSON modules are also written in C. The company has additionally invested in Java and Node.js client library development. Key technical challenges for the engineering team include managing the complexity of CRDT-based replication at scale, optimizing the vector search performance of RediSearch against competitors like Pinecone and Weaviate, and maintaining protocol compatibility between commercial Redis and the Valkey fork.
Redis (open source) version 7.0, released in April 2022, introduced Redis Functions as a replacement for Lua scripting, enabling server-side logic execution in multiple languages. Version 7.2, released in September 2023, added sharded pub/sub, performance improvements to the WAIT command, and new ACL logging capabilities. Version 7.4, released in 2024, was the first version issued under the RSALv2 and SSPLv1 licenses rather than the BSD license. This version also introduced hash field expiration, a long-requested feature allowing individual fields within a hash to have independent TTLs.
Redis Stack is the bundled distribution that packages the open-source Redis engine with five additional modules: RediSearch (full-text search and vector similarity search using the HNSW and flat index algorithms), RedisJSON (native JSON document storage and querying using JSONPath), RedisTimeSeries (time-series data ingestion and querying with downsampling and aggregation), RedisBloom (probabilistic data structures including Bloom filter, Cuckoo filter, Count-Min Sketch, and Top-K), and the deprecated RedisGraph. Redis Stack serves as Redis Inc.'s answer to the growing demand for a multi-model database, and particularly as a vector store for AI and LLM applications requiring semantic similarity search.
Redis Cloud is the flagship commercial product, available in three tiers. Redis Cloud Essentials targets individual developers and small teams, with datasets up to 12 GB and a free 30 MB tier. Redis Cloud Pro targets production workloads requiring dedicated resources, horizontal scaling, and multi-zone availability. Redis Cloud Enterprise adds RBAC, SAML SSO integration, encryption at rest with customer-managed keys, and the Active-Active geo-replication capability across up to five geographic regions simultaneously. Redis Cloud is deployed on AWS, Google Cloud Platform, and Microsoft Azure.
Redis Enterprise Software is the on-premises packaging of the commercial platform, licensed annually and deployed on bare metal, VMware, Kubernetes (via the Redis Enterprise Kubernetes Operator, available on OperatorHub and Red Hat OpenShift), or private cloud. This product is particularly important for financial services firms, government entities, and defense contractors that cannot use public cloud services for sensitive workloads.
Redis Triggers and Functions, introduced in beta during 2023 and reaching general availability in 2024, allows developers to write JavaScript functions (running on the V8 engine embedded in Redis) that execute in response to keyspace events. This eliminates the round-trip latency of running business logic in an external application server for event-driven workflows.
RedisGraph, a property graph database module implementing the Cypher query language on top of sparse adjacency matrices using GraphBLAS, was officially discontinued in January 2023, with the company citing resource prioritization decisions. FalkorDB, a community fork of RedisGraph, subsequently maintained the codebase independently.
Redis Cloud holds SOC 2 Type II and ISO 27001 certifications. The AWS and Azure deployments of Redis Cloud are HIPAA-eligible, enabling use in healthcare applications. FedRAMP authorization had not been publicly announced as of the end of 2024. Redis Cloud on AWS is available via AWS PrivateLink for private connectivity without traversing the public internet.
The most direct competitor to Redis as a managed in-memory database is Amazon ElastiCache, which AWS has offered since 2011 and which supports both Redis-compatible and Memcached-compatible engines. ElastiCache's tight integration with the AWS ecosystem (IAM, VPC, CloudWatch) makes it the default choice for AWS-native teams who do not need Redis Enterprise-specific features like Active-Active replication. AWS also launched Amazon MemoryDB for Redis in 2021, a Redis-compatible database that provides multi-AZ durability by persisting data to a distributed transaction log, positioning it as a primary database rather than just a cache — a direct challenge to Redis Cloud's enterprise positioning.
Valkey, the Linux Foundation fork of Redis created in March 2024 immediately following the license change, represents the most structurally novel competitive threat. Within weeks of the fork announcement, Amazon, Google, Oracle, Ericsson, and Snap announced formal contributions to Valkey. Because Valkey maintains full Redis protocol compatibility, any client library, application code, or tooling built for Redis can connect to Valkey without modification. Valkey 7.2.5 was released in May 2024 and Valkey 8.0 followed in September 2024, demonstrating active development velocity. The managed services of AWS (now offering Valkey on ElastiCache and MemoryDB), Google Cloud (offering Valkey on Memorystore), and Azure are expected to accelerate Valkey adoption at the expense of Redis Inc.'s community funnel.
Pinecone, a vector database company that raised $100 million in a Series B in February 2023 at a $750 million valuation, competes with Redis Stack's vector search capabilities. Pinecone is purpose-built for high-dimensional vector search at scale and offers a simpler developer experience for AI applications, but lacks the broader data structure and caching capabilities that Redis provides. Weaviate and Qdrant are additional open-source vector database competitors in the same space.
Redis has historically held a strong position in Gartner research covering the cloud database management systems market, though specific Gartner Magic Quadrant placement details for 2024 are not publicly available in sufficient detail to report with certainty. DB-Engines, the widely-cited database popularity index, has consistently ranked Redis as the most popular key-value store and the most popular in-memory database for multiple consecutive years through 2023, though the 2024 license change may affect community sentiment metrics going forward.
Pricing positioning has historically been mid-market to enterprise for the commercial tiers, with a generous free tier designed to drive bottom-up adoption. The concern raised by the 2024 license change is that the developer community — the primary source of organic demand that converted into enterprise deals — may shift allegiance to Valkey, which remains BSD-licensed and therefore usable freely in commercial products without restriction.
On the acquisition front, Redis Inc. has not completed any major disclosed acquisitions of other companies. The company itself has not been acquired as of the end of 2024, though multiple industry publications reported in 2024 that Redis was exploring strategic alternatives including a potential acquisition by a larger infrastructure software company.
Redis Inc. maintains offices in Tel Aviv, specifically in the central business district of the city, which have served as the primary engineering hub outside San Francisco since Redis Labs was founded in 2011. The Tel Aviv office houses the core database kernel engineering team, the Redis Enterprise cluster management engineering team, the RediSearch module engineering team, and portions of the quality assurance and engineering management functions.
Israel headcount, while not officially disclosed, was estimated at between 200 and 350 engineers and engineering managers at the company's hiring peak in 2021-2022. Following the workforce reductions of 2023, the Israel R&D organization contracted, but the office remained operational as a strategic center. Functions present in Israel include core database engineering, distributed systems engineering, module development (RediSearch, RedisJSON), performance engineering, and developer advocacy. Sales and marketing functions are concentrated in the United States, with Israel focused almost entirely on technical roles.
The 2023 layoffs, which were part of a global reduction, affected the Israeli team proportionally. There were no reported relocations of the Israeli office or transfers of Israeli R&D functions to other geographies — the Tel Aviv office was preserved as a critical engineering asset despite the headcount reduction. No office expansion announcements specific to Israel were made in 2023 or 2024.
The founding team of Redis Inc. (the commercial entity, as distinct from the open-source project) included Israeli entrepreneurs. Yiftach Shoolman and Ofer Bengal, who co-founded Redis Labs in 2011 alongside Sanfilippo, are Israeli. Ofer Bengal served as CEO of Redis Labs/Redis Inc. for a substantial portion of the company's history; he was succeeded as CEO by Rowan Trollope in 2020, who himself stepped down in 2023, at which point Rowan Trollope's successor was put in place. The Israeli co-founders played instrumental roles in designing the Redis Enterprise commercial architecture, particularly the Active-Active geo-replication technology developed in Tel Aviv.
The typical roles that Redis recruits for in Israel include Software Engineer specializing in C and systems programming, Distributed Systems Engineer, Database Kernel Engineer, Performance Engineer, Site Reliability Engineer, Technical Product Manager (embedded with engineering), and Developer Advocate. The engineering profile skews toward candidates with strong computer science fundamentals from the Technion – Israel Institute of Technology, Tel Aviv University, and the Hebrew University of Jerusalem, as well as engineers with relevant background in storage systems, networking, or operating systems.
There are no publicly disclosed Israeli venture investors as specific strategic shareholders in Redis Inc. — the company's investors are American funds (Tiger Global, Francisco Partners, Bain Capital Ventures, Goldman Sachs Asset Management). However, Redis works with major Israeli technology companies as customers and partners. The company has not publicly disclosed specific named Israeli customer wins.
The engineering culture of the Israeli Redis team is strongly influenced by open-source norms — many of the Tel Aviv engineers contributed publicly to the Redis open-source project under their own names, which is unusual for an enterprise software company and reflects the open-source DNA of the founding. Redis Israel does not have a publicly identified pipeline from IDF intelligence units such as Unit 8200 or Unit 81, in contrast to cybersecurity-focused Israeli technology companies. The hiring profile in Israel is more academically oriented than defense-oriented, with emphasis on database theory, algorithms, and distributed systems research backgrounds.
news feed
<a href="https://news.google.com/rss/articles/CBMiVEFVX3lxTFBFS2hLWUEwTG5DcXoxc05GWGl6WlZVNHlJWDgzdzdEd05FSTVUYmYwV29Zb2lmNHVtbVJtVk5pSE1sdW9mNkJnU3ctbUFIOWpiWF9FRQ?oc=5" target="_blank">Redis</a> <font color="#6f6f6f">The Times of Israel</font>
Jul 13, 2026
<a href="https://news.google.com/rss/articles/CBMiZ0FVX3lxTE83U2h3NDBIQkF0TXM0V25KMTRvR2hhSGQ0Y1RhOVZ3MlMzQXQxMVl0Zm5rWHRGMjdVanVzeFowMUUxTENIQURPLUNsOWRpMjVzLTAxRV9mZHFTVF91UHRRM2NmSEJ2U2c?oc=5" target="_blank">Israeli unicorn Redis cuts dozens of jobs despite $300 million revenue run rate</a> <font color="#6f6f6f">calcalistech.com</font>
Jul 13, 2026
<a href="https://news.google.com/rss/articles/CBMilAFBVV95cUxQWE1rMTh5ZHNTV1JyWnFDenZsNGIwQUxFWVB5Z2ttQWhlVGRrZkh0WUNzZml2blFPZW1QbXpSN21XMFZRSXBqZDlsb01WdTdLRHhkR0xRaFloTmdZR3RmcU5vUUZYbXRBS3puWDZ6c2E0TzJ4dGRuekpLZWMtUnBnNjlWVXBaNEZka3ZMeUFkamM5bG00?oc=5" target="_blank">A Jew at CUFI: Rediscovering the Biblical Heart of Zionism</a> <font color="#6f6f6f">The Times of Israel</font>
Jul 12, 2026
<a href="https://news.google.com/rss/articles/CBMid0FVX3lxTE9SNFBSWTFDX0U2QXNJSkZGTjhUeDUwZUM1alFteTFRSjB5R2EtWjRmZVlPbXhLNFVkakpULU5ZX2NkQkVzaTRtd0U3TDdzbDE3YXBFRk5vbHc1cWY2UFBvS1pRMklaQjlzdHBScUFxc3lwblVhdXJJ?oc=5" target="_blank">Redis Labs heading to Nasdaq at $4-5 billion valuation</a> <font color="#6f6f6f">CTech</font>
Dec 21, 2021
hiring signal · from our data
From our job data · always current
5 open roles in Israel · +56 worldwide
Live openings we track — Israel first, plus worldwide when we have them.
Top roles