This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2019-11-17
Channels
- # announcements (1)
- # babashka (6)
- # beginners (5)
- # boot (18)
- # calva (4)
- # clj-kondo (39)
- # cljdoc (1)
- # cljs-dev (1)
- # clojure (24)
- # clojure-italy (5)
- # clojure-spec (5)
- # clojurescript (20)
- # cursive (10)
- # data-science (1)
- # datomic (1)
- # emacs (1)
- # fulcro (1)
- # kaocha (5)
- # rewrite-clj (18)
- # shadow-cljs (11)
- # spacemacs (35)
- # sql (11)
- # vim (13)
looking through the changelogs of java 9, 10, and 11 to see what might be added / removed. one thing that stood out was: JDK-8181784 - this is a revised http client lib iiuc. it allegedly has http2 and websocket support of some sort.
(import 'java.lang.ProcessHandle)
;;
(defn print-desc-pids
[pid]
(doseq [p (some-> (.get (java.lang.ProcessHandle/of pid))
.descendants
.iterator
iterator-seq)]
(println (.pid p))))
unfortunately, i think it was introduced in java 9. if graal 19.3 includes java 11 support, does that make such features eligible for inclusion in bb once babashka is built using graal >= 19.3?
bb v0.0.30: https://github.com/borkdude/babashka/releases/tag/v0.0.30
performance improvement which can make loop
and functions using recur
3x faster
🎉 8