Manfred Bergmann
Manfred Bergmann
Remoting in the sense of having actor systems on different hosts where sending messages is location transparent. Meaning actor A in system A can send and receive message to/from actor...
So it doesn't clash with existing 'utils' package in projects that use 'cl-gserver'.
Current limitation are the atomics which have no support for CLisp. But there may be a specialized implementations based on locks instead.
Can't be compiled on Clasp 1.0
cl-gserver currently only sets (`setf`) the value of `state` in `(cons back-msg state)` to the actor state. It does not make a deep copy to maintain immutable environments. This is...
Let me know if this is the right place.
See: ``` CL-USER> (str:split "\\n\\n" (str:join "" '("foo" #\newline #\newline "bar"))) ("foo bar") CL-USER> (ppcre:split "\\n\\n" (str:join "" '("foo" #\newline #\newline "bar"))) ("foo" "bar") CL-USER> (ppcre:split "\\s\\s" (str:join "" '("foo"...