skip to Main Content

Cant access redis from fastapi api when they are in a same cluster, same pod, using a single node cluster via docker desktop

2023-01-07 21:05:14 File "/usr/local/lib/python3.10/site-packages/uvicorn/protocols/http/h11_impl.py", line 407, in run_asgi 2023-01-07 21:05:14 result = await app( # type: ignore[func-returns-value] 2023-01-07 21:05:14 File "/usr/local/lib/python3.10/site-packages/uvicorn/middleware/proxy_headers.py", line 78, in __call__ 2023-01-07 21:05:14 return await self.app(scope, receive, send) 2023-01-07 21:05:14 File "/usr/local/lib/python3.10/site-packages/fastapi/applications.py", line 270, in __call__…

VIEW QUESTION

Caused by: io.netty.channel.AbstractChannel$AnnotatedConnectException: Connection refused: localhost/127.0.0.1:6379 – Docker

I just migrated from Spring boot 2 to Spring boot 3. When I run the project I get the error | Caused by: io.netty.channel.AbstractChannel$AnnotatedConnectException: Connection refused: localhost/127.0.0.1:6379 | Caused by: java.net.ConnectException: Connection refused | at java.base/sun.nio.ch.Net.pollConnect(Native Method) ~[na:na] | at…

VIEW QUESTION

Redis – Session ID changes although resave has been set to true (the client doesn't take the new expiration date into account)

I'm using NodeJS an express session handling with Redis. Here is the interesting part: let session = require('express-session') let cookieParser = require('cookie-parser') let Redis = require('ioredis'); let clientRedis = new Redis(); let RedisStore = require('connect-redis')(session); const SESSIONSECRET = require(config.get('app.secretsession')).secret; app.use(cookieParser(SESSIONSECRET));…

VIEW QUESTION

PHPRedis and Locking

I got the following two functions that I use to lock a Redis key. I am trying to prevent concurrency execution of a block of code using Redis. So what I do is use the following functions in such a…

VIEW QUESTION
Back To Top
Search