Simple_httpdSourceModule dealing with the asynchronous treatment of clients by each domain
Module that encapsulates non blocking sockets with function similar to Unix.read and Unix.single_write but that will perform scheduling instead of blocking. This can be used to access your database. It has been tested with OCaml's bindings to libpq.
Representation of input streams, can be generated from string, file, ...
Module for creating process to communicate with. reading and writing are non blocking.
Module defining HTML response codes
Module defining Routes to select which function will answer a request
Type of request filters. These filters may transform both the request and the response. Several method may share filter passed as optional parameters to function like Server.add_route_handler.
provide a filter giving very simple statistics. We can do much better but be carefull on how to do it