Hi
i installed hunchentoot in clisp via quickload. it seems working well except for the following:
The function "start" does not return the acceptor. It creates own, so that the http-server works but it keeps on hanging on the command and does not return to REPL so that i have to break manually.
Any help would be appreciated Matus
On Wed, May 25, 2011 at 11:29 AM, Matus Kmit simply.nitaai@gmail.com wrote:
i installed hunchentoot in clisp via quickload. it seems working well except for the following:
The function "start" does not return the acceptor. It creates own, so that the http-server works but it keeps on hanging on the command and does not return to REPL so that i have to break manually.
You are running single threaded. If you want to run Hunchentoot in the background, you need a multi-threaded Lisp (CCL and SBCL work fine).
-Hans
On Wed, May 25, 2011 at 11:33 AM, Hans Hübner hans.huebner@gmail.com wrote:
On Wed, May 25, 2011 at 11:29 AM, Matus Kmit simply.nitaai@gmail.com wrote:
i installed hunchentoot in clisp via quickload. it seems working well except for the following:
The function "start" does not return the acceptor. It creates own, so that the http-server works but it keeps on hanging on the command and does not return to REPL so that i have to break manually.
You are running single threaded. If you want to run Hunchentoot in the background, you need a multi-threaded Lisp (CCL and SBCL work fine).
-Hans
tbnl-devel site list tbnl-devel@common-lisp.net http://common-lisp.net/mailman/listinfo/tbnl-devel
Thanks Hans. Tried with ccl -> it works.
Matus