Laravel Redis Caching Performance is Very Slow in Laragon
Dec 27, 2022 · Snippet · 1 min, 83 words
Sometimes, Redis caching performance seems very slow in Laragon. The problem REDIS_HOST .env variable.
Solution
To solve the issue, just update the variable like below:
// old
REDIS_HOST=localhost
// new
REDIS_HOST=http://127.0.0.1
I hope the solution will work.
Share on Social Media

Comments
No comments yet…