channels work fine, thats great. how do I close one? I see Close function in channel.go
(defonce x (chan))
;error (close x)
thanks. didn't see the docs before. was also looking for select from channels, which seems to be not implemented
Try (close! x)
.
Might be worth finding occurrences of “channel” here: https://candid82.github.io/joker/joker.core.html
The embedded database thing looks very cool.