Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm curious about using Lisp to underpin a modern RESTful web service, but given the many variants and implementations, it's difficult to know where to begin.

I am certain that there are people out there using Lisp for web related applications (just trawling through the questions here on SO shows that) but what I would like to know is are there any Lisp implementations which are more suited to web services than others? (native unicode support for example, inbuilt web-related libraries, performance etc)

I'm not looking for unicode "hacks" or web frameworks. I'm mostly interested in what you get out of the box. I haven't aligned myself with any Lisp derivative or implementation, though I have some minor experience with Common Lisp on CLISP (a generic polynomial calculator as part of an undergraduate computer science course). It would be nice to know if there are particularly good choices for this problem, especially from those people who have actually used Lisp in this way.

share|improve this question

2 Answers

up vote 6 down vote accepted

Racket's standard library contains a web server library. I've played with it, but felt it wasn't suited to my preferred interactive way of working with a Lisp. It does have some nice features, like continuation-based flow of control, so it's worth a look.

Speaking from personal experience, Common Lisp is a great choice for web development. It's what my blog is implemented in. Hunchentoot is simple and powerful and very Lispy. Interactive programming is supported as well as can be imagined, and there are plug-ins for things like Websockets (which I haven't needed yet, though).

That said, web programming in Clojure is just as pleasant. I've implemented a web-based community hub for my family using Clojure and Noir. Stylewise, Noir is very similar to a combination of Hunchentoot and cl-who. As a bonus, access to Java libraries can be extremely useful. (In my case, implementing OpenID login support, which would have been difficult with Common Lisp, was a breeze with Clojure.) Because of this, if your application needs to interact with third-party web services or data formats, I suggest taking a good and long look at Clojure.

REST interfaces are easy to do in Hunchentoot/Noir-style web frameworks, too. I can't judge Racket's web server in this regard, as I am not familiar enough with it.

share|improve this answer
I've had a quick glance over Hunchentoot, but it seems to support a limited set of verbs, is this correct? (GET and POST) - I'd need something a bit more versatile than that. Access to the raw http request and response headers is pretty important in a web service. Clojure/Noir seems to provide such access. I think Racket can also access raw headers, but it would certainly require more than a quick glance to assess the nature of Racket. Maybe some Racket advocates will leave some comments. – Matt Esch Apr 7 '12 at 21:19
2  
@MattEsch With Hunchentoot, you can access the request method using the request-method* function. Even define-easy-handler doesn't care about the verb much—you can do a CASTMAGIC request if you want, and it'll work. :) (Try writing a simple handler that returns just (symbol-name (hunchentoot:request-method*)).) With Noir, there is direct support for the standard HTTP verbs (GET, POST, PUT, DELETE, HEAD) in the dispatch mechanism. Both Hunchentoot and Noir let you access HTTP request headers. – Matthias Benkard Apr 7 '12 at 23:34
Thanks for the clarification. I was just confused as to why the docs were making a point of the specific verbs GET and POST (like it's some sort of novelty). Thanks for clearing that up. I will have a go with Hunchentoot and see what I can come up with. I'll leave the question open for now just to see if it yields other responses. – Matt Esch Apr 8 '12 at 0:43

I know one maybe fits your need: Clack

Clack is a web application environment for Common Lisp inspired by Python's WSGI and Ruby's Rack.

Hope it helps.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.