Collect, organize, and act on massive volumes of high-resolution data to power real-time intelligent systems. Learn more →
Lettuce Alternatives
Similar projects and alternatives to lettuce
-
-
InfluxDB
InfluxDB high-performance time series database. Collect, organize, and act on massive volumes of high-resolution data to power real-time intelligent systems.
-
-
-
nextjs-starter-medusa
A performant frontend ecommerce starter template with Next.js 15 and Medusa V2.
-
-
-
-
CodeRabbit
CodeRabbit: AI Code Reviews for Developers. Revolutionize your code reviews with AI. CodeRabbit offers PR summaries, code walkthroughs, 1-click suggestions, and AST-based analysis. Boost productivity and code quality across all major languages with each PR.
-
conditional
A super lightweight library that helps you to compose multiple conditional expressions and make them asynchronous easily.
-
-
-
-
Redisson
Redisson - Valkey and Redis Java client. Real-Time Data Platform. Sync/Async/RxJava/Reactive API. Over 50 Valkey and Redis based Java objects and services: Set, Multimap, SortedSet, Map, List, Queue, Deque, Semaphore, Lock, AtomicLong, Map Reduce, Bloom filter, Spring, Tomcat, Scheduler, JCache API, Hibernate, RPC, local cache..
-
Flowable (V6)
A compact and highly efficient workflow and Business Process Management (BPM) platform for developers, system admins and business users.
-
tbmq
Open-source, scalable, and fault-tolerant MQTT broker able to handle 4M+ concurrent client connections, supporting at least 3M messages per second throughput per single cluster node with low latency delivery. The cluster mode supports more than 100M concurrently connected clients.
-
-
-
SaaSHub
SaaSHub - Software Alternatives and Reviews. SaaSHub helps you find the best software and product alternatives
lettuce discussion
lettuce reviews and mentions
-
How TBMQ Uses Redis for Reliable P2P MQTT Messaging
To overcome this limitation, we migrated to Lettuce, an asynchronous Redis client built on top of Netty. With Lettuce, our throughput increased to 60k msg/s, demonstrating the benefits of non-blocking operations and improved parallelism.
-
Node.js + ioredis + elasticache
const REDIS_COMMAND_TIMEOUT = 10000; const MAX_REDIS_ATTEMPS = 3; const REDIS_BACKOFF_RETRY = 2000; const REDIS_HOST = process.env.REDIS_HOST || '127.0.0.1'; const REDIS_PORT = Number(process.env.REDIS_PORT) || 6379; // https://github.com/redis/lettuce/wiki/Redis-URI-and-connection-details const REDIS_SCHEME = REDIS_CLUSTER_ENABLED ? `rediss` : `redis`; const redis = new Redis(`${REDIS_SCHEME}://${REDIS_HOST}:${REDIS_PORT}`, { commandTimeout: REDIS_COMMAND_TIMEOUT, retryStrategy: (times: number): number | null => { if (times > MAX_REDIS_ATTEMPS) { return null; // Stop retrying } return REDIS_BACKOFF_RETRY; // Retry after some time }, tls: REDIS_CLUSTER_ENABLED ? {} : undefined, });
-
Redis Cluster with heavy write application results in bad redis read latency
I am using lettuce java library with async api. They says it used pipelining as default. Also I tried manually command flushing. I don't see the improvement.
-
A Guide for Beginners into Medusa, the Open Source Ecommerce Platform
For connection string, please refer to this guide.
-
A note from our sponsor - InfluxDB
influxdata.com | 17 Apr 2025
Stats
redis/lettuce is an open source project licensed under MIT License which is an OSI approved license.
The primary programming language of lettuce is Java.