> I'd love to hear success stories from people using nailgun to actually > run frequent scripted tasks out of cron, as opposed to for > development. It would make clojure more palatable for my work > environment.
Nailgun has been a boon to me. I don't believe Nailgun has a problem with dynamic classes - only that you have to remember to stop/start Nailgun to ensure its ClassLoader gets the latest classes (I would be genuinely interested in any details that show otherwise). F.E. I can: 1. (def q (vec (range 1000000))) 2. use jvisualvm to see q takes up ~20MB RAM; 20 bytes / Integer. 3. (def q "abc") 4. use jvisualvm and it will show the 20MB has been GC'd just fine. (I'm not sure what sort of dynamic class / unload/ GC? issue you were referring to). Since it takes Spring a long time to instantiate all of the configured objects using Nailgun really does save me time. I have a lot of nifty command line tools that help me resolve support issues and waiting for Spring (not the JVM really) to instantiate and wire everything up really slowed me down. Nailgun solves the speed problem and I haven't had any problems with it. --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Clojure" group. To post to this group, send email to clojure@googlegroups.com Note that posts from new members are moderated - please be patient with your first post. To unsubscribe from this group, send email to clojure+unsubscr...@googlegroups.com For more options, visit this group at http://groups.google.com/group/clojure?hl=en -~----------~----~----~----~------~----~------~--~---