Saetta Web Server

Saetta Web Server
Stable release 1.4.10[1] / 22 November 2014
Development status Active
Written in C
Operating system GNU/Linux
Type Web server
Website Izysoftware.com

Saetta Web Server is a web server with a strong focus on high concurrency, performance and low memory usage.

Overview

Saetta Web Server can deploy dynamic HTTP content on a network using SAAPIs, server-side applications written in the C or C++ programming language, or in PHP with the embedded PHP module for PHP web pages, or the CGI handler for scripts.

Like Nginx, Saetta Web Server uses an asynchronous event-driven approach for handling requests, instead of the Apache HTTP Server model that defaults to a threaded or process-oriented approach. Event-driven approaches provide more predictable performance under high loads.

Basic HTTP features

SAAPI

SAAPI applications can be written using any language that allows the calling of standard C functions and that can be compiled into a shared object (for example the C, C++ and assembly programming languages).

SAAPI Extensions are true applications that run in the address space of Saetta Web Server. They have access to all of the functionality provided by the web server. These extensions are implemented as shared objects that are loaded into the web server process.

Clients can access SAAPI extensions in the same way they access a static HTML page. Server side certain file extensions, full directories and whole web sites can be mapped to be handled by a SAAPI extension.

SAAPIs can be used to generate dynamic content and to serve many concurrent clients requiring little memory resources.

See also

References

External links