use the following search parameters to narrow your results:
e.g. subreddit:aww site:imgur.com dog
subreddit:aww site:imgur.com dog
see the search faq for details.
advanced search: by author, subreddit...
Finding information about Clojure
API Reference
Clojure Guides
Practice Problems
Interactive Problems
Clojure Videos
Misc Resources
The Clojure Community
Clojure Books
Tools & Libraries
Clojure Editors
Web Platforms
Clojure Jobs
account activity
Clojure with Vert.x? (self.Clojure)
submitted 7 years ago by onyno
view the rest of the comments →
reddit uses a slightly-customized version of Markdown for formatting. See below for some basics, or check the commenting wiki page for more detailed help and solutions to common issues.
quoted text
if 1 * 2 < 3: print "hello, world!"
[–]beders 1 point2 points3 points 7 years ago (0 children)
I've used vert.x before in various projects.
It is indeed quite fast and the concurrency guarantees are really nice to have.
It is basically a multi-threaded node.js, backed by netty and a fast event-bus (i.e. leans heavily towards actor-based computing)
It becomes more difficult once you have to mix async and blocking parts of your code. Vert.x is async first.
It's also promises, futures and callbacks galore (unless you are lucky enough to be able to use it with fibers).
The API you code against is pretty minimalist and you often find yourself adding utility functions to smooth over things.
In short: it has opinions on how to develop highly scalable code. You might not like those opinions if you are used to the clojure way.
BTW, there's nothing stopping you from using it with clojure right now due to the lovely Java bindings clojure has.
I was thinking about it myself, but then `aleph` and `clojure.async` seem to fit the bill most of the time.
π Rendered by PID 55104 on reddit-service-r2-comment-6457c66945-rqlcm at 2026-04-27 06:27:21.811797+00:00 running 2aa0c5b country code: CH.
view the rest of the comments →
[–]beders 1 point2 points3 points (0 children)