Dimitrios Piliouras
Dimitrios Piliouras
There is a rather neat little trick that `hato` can use to essentially drop the cheshire dependency, and use whatever json-lib is available on the classpath (e.g. `data.json`, `jsonista`, or...
@p-himik I agree that being able to provide your own encode/decode functions when building the client, is in many ways the cleanest & most flexible approach. However, it doesn't really...
Hello, I was just watching the java 22 launch live stream, and apparently, `synchronized` still pins the carrier thread :( . Is there any news/consensus around replacing with `ReentrantLock`, or...
It could relate to [this](https://clojure.atlassian.net/jira/software/c/projects/CLJ/issues/CLJ-2771). Would it be easy for you to start the JVM with `-Djdk.tracePinnedThreads=full` and look for the relevant console output? Moreoveor, could you try with regular...
Hmm... it could also have to do with your OS - see [this](https://stackoverflow.com/questions/55366733/increasing-limit-of-outgoing-tcp-connections-on-macos).
If `-Djdk.tracePinnedThreads=full` didn't print out anything suspicious, then you can ignore CLJ-2771 (for your tests at least). I don't want to send you down the wrong path, but to me...
Revisiting this ticket because I was finally able to create an AWS account and test this myself. The good news is that the 5 S3-related helpers work as expected -...
Hi again. I may be able to help on this after all - here is some initial (somewhat encouraging) info: The whole thing seemed impossible when I first looked at...
Ok, so here is an attempt at discovering key-groups: ```clj (defn- parse-required-with [f x] (if (seq? x) ;; key-group (let [k (condp = (first x) 'or :oneOf ;; or :anyOf...
Hello? Is there no interest in this?