JoshCap20 / areion

The fastest Python web server. A lightweight, fast, and extensible asynchronous Python web server framework.
MIT License
0 stars 1 forks source link

Reduce GIL Impact #106

Open JoshCap20 opened 1 month ago

JoshCap20 commented 1 month ago
  1. Use multiprocessing, offload tasks to separate processes to bypass the GIL
  2. Use C extensions or libraries that release the GIL during heavy computations.
  3. Use Pypy, need to investigate other impacts though