if choose release gil in cython script considerations have make?
are there added dangers or risk releasing gil in cython program?
also how specify number of threads spawn?
if choose release gil in cython script considerations have make?
are there added dangers or risk releasing gil in cython program?
you can't safely anything interesting python object. can't safely touches object's data without knowing it's safe (possibly own lock).
https://docs.python.org/2/c-api/init.html#thread-state-and-the-global-interpreter-lock provide information.
also how specify number of threads spawn?
creating threads separately. might threading
module or might other way.