Re: Understanding of GIL

2020-01-16 Thread 'Amitesh Sahay' via Django users
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-16 Thread Dvs Khamele
Sure John McClain, Thanks for providing this valuable time. For our general structure, The following is Github repo of one of our sample Django project UserDose:- https://github.com/dvskhamele/UserDose I am also attaching a google drive link for code folder which contains code, named as userdose I

Re: Understanding of GIL

2020-01-15 Thread John McClain
What does your django or flask stacks look like generally On Wed, 15 Jan 2020 at 17:32, Dvs Khamele wrote: > 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 > versio

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

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