How can I do web programming with Lisp or Scheme?

后端 未结 14 1019
遇见更好的自我
遇见更好的自我 2021-01-29 18:35

I usually write web apps in PHP, Ruby or Perl. I am starting the study of Scheme and I want to try some web project with this language. But I can\'t find what is the best enviro

14条回答
  •  渐次进展
    2021-01-29 18:57

    If you are interested in Common Lisp to be exact and do not want to go the weblocks route I would recommend the following setup:

    1. Use SBCL on Linux but with multiple thread support
    2. Use Hunchentoot as a web server which will provide you with all the server processing required including sessions and cookies
    3. Use ClSql to communicate with MySql it has ample documentation and is very stable.
    4. For the HTMl generation you can use Dr Edi Weitz Cl-WHO (very well documented).

    Note all the above are under GPL or similar license (one that works more for lisp programs)

提交回复
热议问题