文件名称:HTTP协议解析库fast-http.zip
文件大小:40KB
文件格式:ZIP
更新时间:2022-08-05 14:32:30
开源项目
fast-http 是 Common Lisp 语言实现的快速 HTTP 请求和响应的协议解析库,大部分移植自 C 语言版本的 http-parser. fast-http 的性能比较: http-parser: An HTTP Parser for Node.js NOTE: Deleted PicoHTTPParser because the benchmark was wrong. It's 3.7 times faster than fast-http. Amazing. 详情请看 Benchmark 使用方法: (let* ((http (make-http-request)) (parser (make-parser http :header-callback (lambda (headers) (my-app:got-headers!!! headers)) :body-callback (lambda (bytes) (my-app:got-body-piece bytes))))) (loop for http-data = (my-app:get-http-data-from-request-i-sent-out-earlier) do (multiple-value-bind (http headers-finished-p body-finished-p) (funcall parser http-data) (when body-finished-p (my-app:close-http-stream)) ...))) 标签:fasthttp
【文件预览】:
fast-http-master
----.travis.yml(868B)
----benchmark()
--------http-parser.c(1KB)
----t()
--------util.lisp(853B)
--------test-utils.lisp(839B)
--------parser.lisp(41KB)
--------multipart-parser.lisp(20KB)
--------benchmark.lisp(2KB)
--------fast-http.lisp(23KB)
--------body-buffer.lisp(1KB)
----README.markdown(10KB)
----src()
--------util.lisp(7KB)
--------parser.lisp(34KB)
--------http.lisp(2KB)
--------multipart-parser.lisp(13KB)
--------fast-http.lisp(14KB)
--------error.lisp(7KB)
--------byte-vector.lisp(5KB)
----.gitignore(60B)
----fast-http.asd(2KB)
----fast-http-test.asd(998B)