Costa Tsaousis 55d1f00bb7 DBENGINE v2 - improvements part 12 (#14379) 2 лет назад
..
Makefile.am 675383b26a Makefile.am files indentation (#7252) 5 лет назад
README.md c7f2647a62 Docs: Removed Google Analytics tags (#12145) 3 лет назад
static-threaded.c 55d1f00bb7 DBENGINE v2 - improvements part 12 (#14379) 2 лет назад
static-threaded.h ccfbdb5c3d Remove extern from function declared in headers. (#13790) 2 лет назад

README.md

static-threaded web server

The static-threaded web server spawns a fixed number of threads. All the threads are concurrently listening for web requests on the same sockets. The kernel distributes the incoming requests to them.

Each thread uses non-blocking I/O so it can serve any number of web requests in parallel.

This web server respects the keep-alive HTTP header to serve multiple HTTP requests via the same connection.