ring

Yehonathan Sharvit 2018-07-06T03:56:33.000171Z

Is Ring written natively in Clojure or does it run on top of a Java web server framework?

mpenet 2018-07-06T06:49:17.000031Z

ring is a unified clj format to talk to http libs from clojure. It can "run" with various adapters (jetty, undertow, netty etc), but yes the adapters are usually thin wrappers to java libs.

mpenet 2018-07-06T06:51:15.000139Z

Aleph is arguably the one that has the most lower level bits written in clojure (I think), but it relies heavily on netty.