1 Overview
This is an HTTP/2 implementation in Common Lisp. It provides both high-level interface as well as ways to fine tune its behaviour for better performance or specific use cases.
For quick start, quickload "HTTP2
" and see Tutorials that show how to use a
simple client to fetch a resource or how to serve simple pages.
1.1 The http2 ASDF System
- Description: Load this system to load all HTTP/2 components - in particular, both client and server.
[package] "HTTP2/CLIENT"
HTTP/2 client functions, in particular,
RETRIEVE-URL
.
[package] "HTTP2-SERVER"
HTTP/2 server functions - for example
START
to start the server andDEFINE-EXACT-HANDLER
andHANDLER
macro to define content to serve.