This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2020-02-14
Channels
- # announcements (4)
- # aws (7)
- # babashka (44)
- # beginners (178)
- # calva (15)
- # cider (3)
- # clj-kondo (15)
- # clojure (139)
- # clojure-dev (8)
- # clojure-europe (2)
- # clojure-italy (2)
- # clojure-losangeles (9)
- # clojure-nl (32)
- # clojure-spec (6)
- # clojure-sweden (1)
- # clojure-uk (27)
- # clojurescript (17)
- # core-typed (116)
- # cursive (26)
- # data-science (1)
- # datomic (14)
- # duct (16)
- # emacs (9)
- # events (1)
- # fulcro (47)
- # jobs (3)
- # juxt (6)
- # keechma (2)
- # malli (59)
- # mid-cities-meetup (8)
- # off-topic (32)
- # pathom (5)
- # reagent (2)
- # remote-jobs (4)
- # rewrite-clj (16)
- # shadow-cljs (14)
- # spacemacs (9)
- # sql (27)
- # tools-deps (37)
- # vscode (7)
New article on raising issues and pull requests for Spacemacs, from with Spacemacs. Includes a video walk through of creating a pull request for the Clojure layer. https://practicalli.github.io/blog/posts/raising-spacemacs-issues-and-pull-requests/
Should be a lot more videos coming soon, now I have all the broadcasting and recording sorted out. I take requests for guides and videos (although can't promise a time frame).
I believe that http-kit has been tested to support 600k request out of the box. I would like to do some load testing content, but it might be a while. Usually the constraints are I/O, like file system or number of database connections. Running on the Java Virtual Machine is very scalable. I was involved in building a Clojure system that did 30 million transactions a day and the CPU load was 0.03% across 3 servers.
Thats cool. I created a tool in python based on that blog to interface data from one ERP system into another, but I am trying to "dog food" Clojure so that I get better at it (vs. using python). I just feel like Clojure has so much to offer with core.async, and I even saw a library called Martian that can use Swagger documents to help build your requests. That is too cool.
We used core.asyc to pump out millions of requests to the enterprise message bus we had to use, Tibco. core.async worked very well even though our uses of Tibco was a bit flawed. Martian looks an interesting abstraction, thanks.