Which C++ Library for CGI Programming?

前端 未结 6 932
故里飘歌
故里飘歌 2020-12-13 15:08

I\'m looking at doing some work (for fun) in a compiled language to run some simple tests and benchmarks against php.

Basically I\'d like to see what other people us

6条回答
  •  醉酒成梦
    2020-12-13 15:34

    In short, I don't think there is such a thing for generic server CGI programming (happy to be proven wrong of course).

    Instead you'll probably have to target the server APIs, such as Apache's. This looks like a reasonable introduction to request processing, which will be a big part of what you're doing.

    As an alternative, Lighttpd may be even more developer-friendly, and (particularly if you're looking at performance) faster.

    I note there's a cpp-netlib under development but it seems to be HTTP client only.

提交回复
热议问题