Search found 3 matches

by KDr2
Sun Jan 09, 2011 7:11 am
Forum: Common Lisp
Topic: I just release a fastcgi toolkit (sb-fastcgi) for SBCL
Replies: 6
Views: 8126

Re: I just release a fastcgi toolkit (sb-fastcgi) for SBCL

TEST> (defun run-app-0 () (sb-fastcgi:simple-server #'simple-app)) RUN-APP-0 TEST> (run-app-0) "ACCEPT ERROR" The simple-server use the file-descriptor *stdin* as a server-socket(a listening socket), so you would not run it directly, you should invoke it from apache's mod_fcgi or use spaw...
by KDr2
Sun Jan 09, 2011 6:50 am
Forum: Common Lisp
Topic: I just release a fastcgi toolkit (sb-fastcgi) for SBCL
Replies: 6
Views: 8126

Re: I just release a fastcgi toolkit (sb-fastcgi) for SBCL

I'm guessing more portable to other web servers Yes, it's more portable to other web servers, it can run on apache/nginx/lighttpd and all other web-servers support fastcgi, while mod_lisp only runs with apache. would it be faster? You can refer to http://fastcgi.com, but I think, is it faster depen...
by KDr2
Wed Jan 05, 2011 7:59 pm
Forum: Common Lisp
Topic: I just release a fastcgi toolkit (sb-fastcgi) for SBCL
Replies: 6
Views: 8126

I just release a fastcgi toolkit (sb-fastcgi) for SBCL

http://kdr2.net/sb-fastcgi.html

It works well for me, and maybe useful for you.

Expect your advice and bug-reports :)

Thanks.