unrepl

discussing specification of an edn-based repl and its implementations.
gcast 2018-04-13T15:55:21.000780Z

anyone know if there is a limit to number of concurrent unrepl sessions over a single socket repl? For example could N users connect to the same socket repl and have idependent unrepl sessions?

pesterhazy 2018-04-13T16:01:51.000347Z

yep

pesterhazy 2018-04-13T16:02:08.000590Z

the sessions should be independent (if they aren't that's a bug)

pesterhazy 2018-04-13T16:02:22.000717Z

or what do you mean by "single socket repl"?

pesterhazy 2018-04-13T16:02:40.000452Z

a single tcp connection, or a single port with multiple connections to that port?

gcast 2018-04-13T19:19:31.000230Z

single port

gcast 2018-04-13T19:20:00.000297Z

so a jar running with a while true Thread/sleep in the main and a socket repl exposed at a port

gcast 2018-04-13T19:29:59.000638Z

Thanks for the info.