archttp
archttp copied to clipboard
A highly performant web framework written in D.
如题,希望添加静态文件支持。
Could it be added to: https://github.com/TechEmpower/FrameworkBenchmarks ?
Hi @zoujiaqing, When I run `archttp` from https://github.com/the-benchmarker/web-frameworks/tree/master/d/archttp inside a container ```dockerfile FROM dlang2/ldc-ubuntu:1.26.0 AS build WORKDIR /usr/src/app COPY . ./ RUN dub build -b release FROM ubuntu:focal RUN apt-get...
HTTP/1.1 200 OK Date: Fri, 09 Jun 2023 16:28:12 GMT Content-Length: 27 Server: Archttp Content-Type: application/json {"message":"Hello, World!"}HTTP/1.1 200 OK Date: Fri, 09 Jun 2023 16:28:12 GMT Content-Length: 0 Server:...
After running app.listen, how can I stop the server?
路由系统貌似是基于正则的解析匹配,好像存在问题,例如 `/test/list/{id}` 和 `/test/{id}`会被认为是同一条路由。出现访问上条路由地址实际却是走的下面的路由。