posting velocity //
Opens vs closes per day
Based on 40 events over 28 days. Green days had more opens than closes, red vice-versa. The dark line is the 7-day rolling average.
Showing: Israel. Click another pill to switch.
Open now
12
Total active openings across all sites
Δ 28-day
+12
Opens minus closes in the last 28 days
Δ 90-day
+12
Opens minus closes in the last 90 days
posting velocity //
Based on 40 events over 28 days. Green days had more opens than closes, red vice-versa. The dark line is the 7-day rolling average.
role mix //
The green layer is the current share of active openings by role. The grey dashed layer is the 90-day baseline — gaps between them show where the company is shifting its hiring mix.
seniority pyramid //
Distribution of active openings by seniority. The 'unknown' row groups jobs from sources that don't expose seniority.
geography //
Active openings by region. Click a row to see jobs in that area.
time on market //
Median
23.6 days
25th pct
19.7 days
75th pct
—
Based on 14 closed jobs and 12 still open (right-censored). Curve is Kaplan-Meier; band is the 95% CI.Low event count — the median will stabilise after ~36 more closures. Until then treat the values as indicative.
company intel · ai-generated
Updated 7d ago
Redis was founded in 2009 by Salvatore Sanfilippo, an Italian developer known by his online handle antirez, who created the Redis open-source project while building a real-time analytics startup called LLOOGG. Sanfilippo wrote the first version of Redis in C in early 2009 to solve specific performance bottlenecks that MySQL could not handle at the read/write rates he required, and released it publicly in February 2009. The commercial entity, Redis Labs, was incorporated in 2011 in San Mateo, California, by Sanfilippo alongside co-founders Yiftach Shoolman and Ofer Bengal, with the explicit purpose of building a managed cloud business around the open-source core. In 2021, Redis Labs officially rebranded to Redis Inc. to align its corporate identity with the product name.
Redis Inc. is headquartered in San Francisco, California, having relocated from San Mateo. Israel is the most significant engineering geography outside the United States, with offices in Tel Aviv that house a large portion of the company's core R&D organization. The Tel Aviv office has operated since the founding years of Redis Labs and has functioned as the primary kernel and infrastructure engineering center for the commercial product.
Redis Inc. is a private company and is not listed on any stock exchange. Its most recent disclosed funding round was a Series G in January 2021, which raised $110 million led by Tiger Global Management, valuing the company at approximately $2 billion post-money. Prior rounds include a $60 million Series E in 2018 led by Francisco Partners and a $100 million Series F in 2020 led by Tiger Global. As of 2024, there have been no announced additional funding rounds, and industry reporting in 2024 noted exploratory discussions about potential M&A or strategic alternatives.
At its peak in 2022, Redis Inc. employed approximately 1,500 people globally. The company conducted layoffs in January 2023 affecting roughly 50 employees, with additional workforce reductions through 2023. As of late 2024, estimates place global headcount at between 900 and 1,200 employees. Israel accounts for a substantial portion of engineering and research headcount, estimated at between 150 and 300 employees following the 2023 reductions, making it the largest R&D hub outside the United States.
Redis provides an in-memory data platform — a NoSQL database engine that stores all data in RAM and supports rich data structures including strings, hashes, lists, sets, sorted sets, streams, and bitmaps — used as a cache layer, primary database, message broker, and vector store. The single most consequential event in the past 12 months was Redis Inc.'s announcement in March 2024 that it would relicense the open-source Redis project from the permissive BSD license to the Server Side Public License (SSPLv1) and the Redis Source Available License v2 (RSALv2). This decision triggered a rapid community response: Amazon Web Services, Google Cloud, Oracle, Ericsson, and other contributors forked the project under the Linux Foundation to create Valkey, a BSD-licensed Redis-compatible alternative, within days of the announcement.
Redis Inc. is an independent company and not a subsidiary of any parent entity, though as noted above, strategic alternatives including acquisition have been discussed in industry reporting throughout 2024.
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.
Sources
Company website
key people & leadership
4 key people, sourced from public records — with a per-row confidence score.
Salvatore Sanfilippo
Creator of Redis (open source), former Principal Engineer
Italian developer who created the Redis open-source project in February 2009 while working on his startup LLOOGG, and co-founded Redis Labs in 2011.
Ofer Bengal
Co-Founder and former CEO
Israeli co-founder of Redis Labs in 2011 who served as CEO and was instrumental in building the Redis Enterprise commercial product and the Active-Active geo-replication architecture.
Yiftach Shoolman
Co-Founder and former CTO
Israeli co-founder of Redis Labs in 2011 who served as CTO and led core engineering architecture for the commercial Redis Enterprise platform.
leadership
Rowan Trollope
Former CEO (2020–2023)
Window: 180 days back. Don't read the mean — the long tail biases it. Median and percentiles are the honest summary.
Republish rate
0.0%
0 / 73 of closed jobs reposted within 60 days
news feed
No recent news about this company.
hiring signal · from our data
From our job data · always current
12 open roles in Israel · +147 worldwide
Top roles