-
-
Notifications
You must be signed in to change notification settings - Fork 27
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat: ioredis cache handler #810
base: canary
Are you sure you want to change the base?
feat: ioredis cache handler #810
Conversation
|
Hi @jsmylnycky! Thank you for your contribution to the It seems like the Redis team has dropped the support of the |
Hi @better-salmon ! Thanks for sharing that info about ioredis. Admittedly, that revelation will push me to look deeper into using node-redis with Elasticache and just work through the hurdles I ran into last time I tried (been a couple years). If you still want to proceed with a community handlers package, I'm happy to push this into that instead, in case it may help someone who can't quite as easily move away from ioredis. Just let me know how you'd look to proceed with this! |
For now supporting Next.js 15 is top priority. I'll return to you later 🙂 |
@better-salmon 100% understood and agree on the Next15 priority! Just wanted to let you know that I would like to go ahead with publishing this as a community handlers package, so I'll work with you when you're ready to put some time into that. I spent a good amount of hours last week trying to get |
This is awesome @jsmylnycky , we indeed need this cause unfortunately |
I'll get the conflicts resolved once I get the green light on how to proceed :) Just giving this project some breathing room while they focus on Next15 support. |
Yeah i see suport for nextjs15 is still in progress so we are not upgrading to 14 until we see it's safe. thank you anyways ! :) ps.: hope |
The primary projects I work on leverage ioredis as the client of choice, primarily due to a history of having better results connecting to AWS ElastiCache.
The goal here was to copy the
redis-strings
cache handler, and update the calls to the ioredis variation.I'm sharing this back in hopes that others might find this particular client useful.
I confirmed all e2e tests pass.
I considered explicitly calling this
ioredis-strings
but opted for shorthandioredis
. I'm happy to change it if anyone feels strongly, just let me know!