> 2) And even if we can manage point 1) there is still the problem > with atomicity. Or not? > I imagine a chain of n functions. Callers or callees may expect > different args. I would like to update the whole namespace as > one unit. Maybe this already works in Clojure?
There was a discussion on this topic back in September, titled "Fixing production systems on-the-fly". I wrote then: "Re consistency: I seem to recall Pascal Costanza working on activation of layers, so you can swap a whole set of stuff across your program. He spoke about it at ILC2009, but I'm not sure I've found the right paper. Common Lisp-specific, though." He showed a website, paused mid-request, where he swapped out several functions. Unpausing the request still ran to completion with the old functions. A new request ran with the new functions. Impressive. -- You received this message because you are subscribed to the Google Groups "Clojure" group. To post to this group, send email to [email protected] Note that posts from new members are moderated - please be patient with your first post. To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/clojure?hl=en
