Skip to content Skip to sidebar Skip to footer
Showing posts with the label Gil

Parallel File Matching, Python

I am trying to improve on a script which scans files for malicious code. We have a list of regex p… Read more Parallel File Matching, Python

Python Gil: Is Django Save() Blocking?

My django app saves django models to a remote database. Sometimes the saves are bursty. In order to… Read more Python Gil: Is Django Save() Blocking?

Releasing Python Gil While In C++ Code

I've got a library written in C++ which I wrap using SWIG and use in python. Generally there is… Read more Releasing Python Gil While In C++ Code

Is The Python Gil Really Per Interpreter?

I often see people talking that the GIL is per Python Interpreter (even here on stackoverflow). But… Read more Is The Python Gil Really Per Interpreter?

Python Threads Are Not Improving Speed

In order to speed up a certain list processing logic, I wrote a decorator that would 1) intercept i… Read more Python Threads Are Not Improving Speed

Python GIL And Multithreading

I would like to separate my sigle-thread application to number of working threads. Just 1 question … Read more Python GIL And Multithreading