Is there a way to make an aleph HTTP server suspendable? https://github.com/weavejester/suspendable. To do so I'd need to be able to update the routes that get passed in
I imagine this question has been asked a lot, but what work has been done re: clustering on top of aleph? a lá Akka
@danielcompton, I'm suspending Aleph the same way as weavejester is suspending Jetty in duct: https://github.com/duct-framework/server.http.jetty/blob/master/src/duct/server/http/jetty.clj
i.e. have the handler in an atom
@miikka so the handler that you pass to Aleph does a deref of the atom to get the actual handler?
yeah
nice, thanks 🙂