Re: [SQLObject] SQLobject doesn't work in multiprocessing

2024-04-09 Thread Oleg Broytman
Hi! On Tue, Apr 09, 2024 at 10:09:44AM -0700, Nitin Chauhan wrote: > Can you please let me know how I can make multiple separate MySQL sqlobject > connections work with each process in a multiprocessing pool? I do not understand the question. Every process just opens a new connection. Starts

Re: [SQLObject] SQLobject doesn't work in multiprocessing

2024-04-09 Thread Nitin Chauhan
Thanks for the reply Oleg, Can you please let me know how I can make multiple separate MySQL sqlobject connections work with each process in a multiprocessing pool? On Tue, Apr 2, 2024 at 10:10 AM Oleg Broytman wrote: > Hello! > > On Tue, Apr 02, 2024 at 09:37:51AM -0700, Nitin Chauhan < > niti

Re: [SQLObject] SQLobject doesn't work in multiprocessing

2024-04-02 Thread Oleg Broytman
Hello! On Tue, Apr 02, 2024 at 09:37:51AM -0700, Nitin Chauhan wrote: > Can anyone please share if SQLObject even supports multiprocessing pools? I'm sure it doesn't. Every process must open its own connection(s). For many backends even every thread must open per-thread connection. > Best R