문제

Concerning a web app, using Common Lisp, Apache, and fastcgi can one match urls with the desired functions defined in top-level rather than writing separate script files per urls?

Is it possible to use both approach above in a development environment of Common Lisp Apache fastcgi combination? And how, by which tools?

Is it compulsory to use a server which is loaded on Common Lisp implementation (as described and mentioned as "simple-server" in this page presents sb-fastcgi) in a development environment of Common Lisp Apache fastcgi combination? Or it is not compulsory on SBCL Apache sb-fastcgi environment and "simple-server" mentioned there is just another way? I try to avoid a server like those and some others that is not as well supported and maintained as Apache.

Does fastcgi make the connection between Interpreter (a Common Lisp here) and Apache directly or via another server software loaded on Common Lisp, say like Hunchentoot or "simpleserver" mentioned?

I want to have both of above top mentioned approaches and to be able to run Common Lisp with Apache via fastcgi? What tools i need as sufficiently necessary?

도움이 되었습니까?

해결책

I use Clack for all web-development in lisp now. With Caveman2 you will have a pleasant lisp web experience :)

As the web documentation states:

The reason why Clack had only a few bugs so far is plenty of quality unit tests. There are 173 tests currently. The test coverage has been kept over 70% since its first official release.

All releases have passed the test suite on three CL implementations: Clozure CL, SBCL, and CLISP. You can check the current status at http://ci.clacklisp.org/.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top