serverless-redis-http
serverless-redis-http copied to clipboard
HTTP-based Redis pooler. Access Redis from serverless without overloading connection limits!
Hi, Is it possible to use the server without docker? I mean, involving docker seems to be overkilled. Could you please consider providing some pre-compiled binary so that users can...
By default in production, the service uses port 80. This should be configurable. Using the environment variable `SRH_PORT`, the port specified should be used. In case that is absent, and...
I want to run SRH in Cloud Run as a sidecar container, and it just feels weird that the redis connector blocks port 80 per default. I tried to configure...
Readme states following: > The Upstash implementation of RedisJSON contains a number of subtle differences in what is returned in responses. For this reason, it is not advisable to use...
The following code snippet works towards actual Upstash but not towards `serverless-redis-http` ### Repro ```ts import { Redis } from '@upstash/redis' const redis = Redis.fromEnv() await Promise.all(['a', 'b', 'c'].map(async (key)...
Hey there. I noticed this does not work for clustered redis. Do you have any advice for fixing this?
I am using SRH to test locally an implementation using Upstash Redis, but I can't make it work. A brief context: I'm running a serverless function on Supabase Edge Functions...
Hello! I'm using `serverless-redis-http` to execute integration tests using `@upstash/redis` client but I'm getting the following error while using the `expire` command: `Command 1 [ expire ] failed: ERR wrong...
Thanks for your excellent work, without which it wouldn’t have been possible to run the Vercel AI chatbot locally. I also updated the Docker files to support building for different...