You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Aug 10, 2022. It is now read-only.
I use the go-python3 to hook a snippet of python to the fasthttp package
(github.com/valyala/fasthttp)
It works like a charm if GOMAXPROCS==1 (with 10K requests/seconds)
But it crashed if GOMAXPROCS > 1 (such as 2, 4,...)
I have tried to acquire/release GIL, it crashes soon (not even 10 requests)
I have tried to use sync.Mutex.Lock/Unlock. It crashed too after 200 requests.
(Error: fatal error: unexpected signal during runtime execution)