Running Lisp in Production
tech.grammarly.com
Running Lisp in Production
1–10 of 119 posts
Re: Running Lisp in Production
#2Anyone here has any experience with the GCs of Allegro or LispWorks or any other commercial Lisp implementations?
Re: Running Lisp in Production
#3Re: Running Lisp in Production
#4Re: Running Lisp in Production
#5Re: Running Lisp in Production
#6Re: Running Lisp in Production
#7Very informative. Thank you. Anyone here has any experience with the GCs of Allegro or LispWorks or any other commercial Lisp implementations?
Supposedly they have a concurrent GC in the works but I haven't played with it.
Re: Running Lisp in Production
#8Is it worthwhile to explore Clojure for web-dev seriously or more as a toy?
Re: Running Lisp in Production
#9Is it worthwhile to explore Clojure for web-dev seriously or more as a toy?
The deployment is the very well understood JVM and standard web servers. There's a common HTTP middleware framework (Ring), lots of choices for HTML generation and ClojureScript allows some code-sharing with your client side (compiles to JS).
On the back-end, you could use any Java library. On the front-end, you could use any JS framework (e.g. see https://github.com/omcljs/om)
Re: Running Lisp in Production
#10Very informative. Thank you. Anyone here has any experience with the GCs of Allegro or LispWorks or any other commercial Lisp implementations?
Franz Inc uses Allegro CL in a large database. They tuned the GC quite a bit for that. But there were also other GC demanding applications on Allegro CL, for example in CAD and 3D design. They are now working on a concurrent GC, something which is still rare in the Lisp world.