a simple httpd implemented in C, integrated with nosql DB, script, template,..
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
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