Re: Strange result for clojure.core/time

2020-04-11 Thread Paul Stadig
The output of `time` is in milliseconds and the output of `with-timer-print` is in seconds. So to make them comparable: `time` 0.01344 msec `time` with eval 0.922536 msec `with-timer-print` 0.048 msec `with-timer-print` with eval 1.041 msec The `with-timer-print` version is slower, and I suspect

[ANN] Clojureranker 1.0 for Solr

2020-04-11 Thread Petter Egesund
Hi, nice to meet you all! Code to embed Clojure in Solr and to use functions for calculating the scores in the Solr result list: https://github.com/pegesund/clojureranker Cheers, Petter -- You received th

Re: [ANN] Clojureranker 1.0 for Solr

2020-04-11 Thread Matching Socks
Something is odd about the href of that link, but the Github page https://github.com/pegesund/clojureranker describes a wondrous disruption-for-the-better - using the Clojure REPL inside a running Solr so "There is no long restart, packing cycles" (except "when you require new packages in the

Re: [ANN] Clojureranker 1.0 for Solr

2020-04-11 Thread Petter Egesund
Yes, sorry about the link, I copied it from my Slack, which seemed to transform it in its own way.. The correct link it the one shown: https://github.com/pegesund/clojureranker And yes, you can connect to a nrepl which runs "inside" the Solr-code :) Petter On Sat, Apr 11, 2020 at 6:23 PM Matchi