#mod_wsgi

[ follow ]
Python
fromGrahamdumpleton
2 days ago

Free-threading vs the GIL in mod_wsgi 6.0.0 - Graham Dumpleton

Free-threaded CPython removes the GIL, so CPU usage per process becomes the key indicator of real parallel hardware utilization in mod_wsgi benchmarks.
Python
fromGrahamdumpleton
2 days ago

WSGISwitchInterval in mod_wsgi 6.0.0 - Graham Dumpleton

WSGISwitchInterval tunes CPython’s GIL handoff timing, enabling more predictable scheduling for CPU-bound WSGI workloads when guided by telemetry.
Python
fromGrahamdumpleton
3 days ago

Free-threading in mod_wsgi 6.0.0 - Graham Dumpleton

WSGIFreeThreading enables mod_wsgi to run with free-threaded CPython builds where no GIL exists, allowing parallel Python execution without interpreter locks.
Python
fromGrahamdumpleton
3 days ago

Per-interpreter GIL in mod_wsgi 6.0.0 - Graham Dumpleton

mod_wsgi 6.0.0 adds opt-in per-interpreter GIL support via WSGIPerInterpreterGIL, enabling improved concurrency control for production WSGI deployments.
[ Load more ]