Skip to content

Latest commit

 

History

History
21 lines (11 loc) · 991 Bytes

README.md

File metadata and controls

21 lines (11 loc) · 991 Bytes

servent

a simple httpd implemented in C, integrated with nosql DB, script, template,..

shttpd

SHTTPD is small, fast and easy to use web server. It supports CGI, SSL, Digest Authorization. The unique feature of SHTTPD is the ability to embed it into existing C/C++ applications. Embedded API is very clean and simple. SHTTPD has small memory footprint. Use it when other web servers like Apache are too heavy for your tasks.

source: shttpd

tokyocabinet

Tokyo Cabinet is a library of routines for managing a database. The database is a simple data file containing records, each is a pair of a key and a value. Every key and value is serial bytes with variable length. Both binary data and character string can be used as a key and a value. There is neither concept of data tables nor data types. Records are organized in hash table, B+ tree, or fixed-length array.

source: tokyocabinet