FastCGI
 
Открытое расширение CGI, обеспечивающее высокую производительность без ограничений конкретных серверных API.

Вебсайт: http://www.fastcgi.com
Поддерживаемые платформы: Win32, Linux
Заголовки: fastcgi/fastcgi.bi
Версия заголовков: от 2005

Пример

#include "fastcgi/fcgi_stdio.bi"

Dim As Integer count = 0
While (FCGI_Accept() >= 0)
    count += 1
    Print !"Content-type: text/html\r\n"
    Print !"\r\n"
    Print "<title>FastCGI Hello!</title>"
    Print "<h1>FastCGI Hello!</h1>"
    Print Using "Request number ### running on host <i>&</i>"; count; *getenv("SERVER_NAME");
Wend