Re: How to deinitialize a connection for background worker

2025-01-21 Thread Tom Lane
"ISHAN CHHANGANI ." writes: > I am working on a project which requires me to create a background worker. > This worker checks some array(shared memory) every second and then connects > to the database mentioned within the array. That is I want to connect to > different databases using the same

How to deinitialize a connection for background worker

2025-01-21 Thread ISHAN CHHANGANI .
I am working on a project which requires me to create a background worker. This worker checks some array(shared memory) every second and then connects to the database mentioned within the array. That is I want to connect to different databases using the same background worker without killing it.