skip to Main Content

How to instantiate a python connection pool from cloud run with redis.StrictRedis to connect securely to google cloud Redis (Memstore)

From a cloud run service, I successfully create a connection to google cloud Redis with: redis_webhooks = redis.StrictRedis( host=redis_webhooks_host, port=redis_webhooks_port, password=redis_webhooks_authstring, ssl=True, db=1, ssl_cert_reqs="required", ssl_ca_certs=f"/tmp/{redis_webhooks_server_ca_pem_name}", ) I am now trying to instantiate a connection pool, for better performance, I am…

VIEW QUESTION

Firebase confirm with password

My Firebase app has a certain sensitive operation, that the already signed-in user would ideally confirm by reentering his password. I would like to show this (already signed-in) user a modal requiring him to reenter password and have Firebase check…

VIEW QUESTION
Back To Top
Search