Re: Understanding of GIL

2020-01-16 Thread Amitesh Sahay via Python-list
Hi, You should also undertand that Python uses GIL for Threading purpose. Yes, if you have functiosn that needs simulataneous execution you should use Threading approach. As well as if Huge data is involved then also use multi-processing concept as well On Thursday, 19 December, 2019, 7

Re: Understanding of GIL

2020-01-15 Thread Dvs Khamele
Hi, Hope you are doing well, We are Pythonmate, We are world-first community focussed exclusively on Python, Django, Flask and Js based applications, ERPs, etc for the latest versions and versions since the start of Python. If any requirements you have please let us know. We may provide good commis

Re: Understanding of GIL

2019-12-21 Thread Barry
> On 19 Dec 2019, at 14:19, onlinejudge95 wrote: > > Hi Devs, > > I am currently writing some custom Django commands for data updation, my > workflow is like > > Fetch data from *PostgreSQL*. > Call *Elasticsearch* for searching based on the data fetched from > *PostgreSQL*. > Query *Postgre

Understanding of GIL

2019-12-19 Thread onlinejudge95
Hi Devs, I am currently writing some custom Django commands for data updation, my workflow is like Fetch data from *PostgreSQL*. Call *Elasticsearch* for searching based on the data fetched from *PostgreSQL*. Query *PostgreSQL* and do an upsert behavior. I am using pandas data frame to hold my da