socketio / socket.io-website

Socket.IO website and blog
https://socket.io
318 stars 668 forks source link

#404: [docs] adapter-redis-streams client #413

Closed saram-aman closed 10 months ago

saram-aman commented 10 months ago

This pull request updates the Redis client configuration for improved consistency and readability.

Changes Made:

Before:

const redisClient = createClient({ host: "localhost", port: 6379 });

After:

const redisClient = createClient({ url: "redis://localhost:6379" });

This change simplifies the configuration and makes it easier to manage Redis connections.

Please review and merge this pull request at your earliest convenience.

Thank you.

vercel[bot] commented 10 months ago

The latest updates on your projects. Learn more about Vercel for Git ↗︎

Name Status Preview Comments Updated (UTC)
socket-io-website ✅ Ready (Inspect) Visit Preview 💬 Add feedback Oct 6, 2023 9:54am
darrachequesne commented 10 months ago

Thanks!