Best web framework in Common-lisp? [closed]

牧云@^-^@ 提交于 2019-12-31 08:11:41

问题


What is the best common-lisp web framework available?

I'm looking for something that's suitable for developing commercial web applications and capable of handling high traffic sites similar to Stack Overflow. It should also have built-in session handling and other similar features.


回答1:


My experience:

  • KPAX is unmaintained, pretty low-level and not exactly well-documented
  • UCW is quite hard to get into for beginners due to complexity and missing high-level documentation.
  • SymbolicWeb is dead
  • Use Hunchentoot directly if your needs are basic or highly specific
  • Weblocks is relatively young but already suited for professional projects while offering a basic level of user-friendliness (sparse docs but a very helpful community). It also supports several stores (e.g. CLSQL, Elephant, Prevalence).



回答2:


You could try using Caveman http://clacklisp.org/caveman/

It's based on Clack and is simple to start with




回答3:


With most success I've used webactions

from Franz. I have had a terrible hard time with UCW, but tried to write some "tutorial" for how to use it. I can not tell if anything has improved with UCW since I wrote that tutorial

As you see they say it's outdated and that's true. Why is it outdated? Because nobody has cared to improve it or actualize it, and so my conclusion is, no-one seems to like it very mucch. But YMMV of course...




回答4:


Another similar SO-thread can be found here.

AllegroServe and Hunchentoot seems to be the most used webservers. Not really frameworks, though. I've got some experience using Hunchentoot w/sbcl and my tests have "proved" it to be both fast and reliable. They've both got session handling.

The author of Hunchentoot has some views on performance as well. Most likely the webserver will not be your bottleneck. If it turns out to be then remember that Hunchentoot is open source :-)

You could also take a look at SymbolicWeb which is more of a framework, but still in its early stages. Other suggestions in the other thread.




回答5:


It's been a while since I tried to get into CL web programming, but at the time a lot of people were very happy using KPAX.

There's also Weblocks, which builds on hunchentoot.




回答6:


There's also BKNR.



来源:https://stackoverflow.com/questions/540953/best-web-framework-in-common-lisp

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!