;;;
;;; cl-fastcgi : http://kdr2.net/cl-fastcgi.html
;;;
;;; Author : KDr2 <killy.draw@gmail.com> http://kdr2.net
;;;
;;; License : BSD License
;;;
Curren-Version : 0.2
Docs : http://kdr2.net/cl-fastcgi.html
Examples : test.lisp
==============================================================
CL-FastCGI is a generic version of SB-FastCGI, targeting
to running on mostly Common Lisp implementation.
CL-FastCGI's API is exactly the same as SB-FastCGI's.
Differences between SB-FastCGI
-----------------------------------------------------
**SB-FastCGI**
- Supports SBCL only.
- No third-party packages dependences.
- Supports unix-domain-socket/inet-socket/stdin
- Multithreaded fastcgi server.
**CL-FastCGI**
- Targeting to running on all Common Lisp implementation. And now
it is tested on:
- SBCL
- CMUCL
- CLISP
- Clozure CL
- LispWorks
- ECL
- Depends on **cffi** and **usocket**
- Unix-domain-socket is unsupported.
- Multithreaded fastcgi server is unsupported(You can run it in
multi-processes mode).