Skip to content

Latest commit

 

History

History
19 lines (14 loc) · 648 Bytes

COMMON_LISP.md

File metadata and controls

19 lines (14 loc) · 648 Bytes

Common Lisp

Woo is a fast non-blocking HTTP server built on top of libev. Although Woo is written in Common Lisp, it aims to be the fastest web server written in any programming language.

How fast?

woo


Clack is a web application environment for Common Lisp inspired by Python’s WSGI and Ruby’s Rack.

Example:

(defvar *handler*
    (clack:clackup
      (lambda (env)
        (declare (ignore env))
        '(200 (:content-type "text/plain") ("Hello, Clack!")))))