Re: Clojure in product. Would you do it again?

2024-12-05 Thread aditya....@gmail.com
Subscribed! On Wednesday, December 4, 2024 at 9:59:49 PM UTC+5:30 Łukasz Korecki wrote: > This is great, I've built two products using Clojure and now I'm working > on expanding Clojure usage at my $DAYJOB > - so it's always great to hear how others use Clojure "in real life". > > And yeah, i

Re: function call speed...

2024-12-05 Thread jum...@gmail.com
A discussion about this on Clojurians slack: https://clojurians.slack.com/archives/C03L9H1FBM4/p1728361006109229 A couple of highlights: - apply is very slow and allocating. Desctucturing is suboptimal, especially for lists. - If you look at the apply method's implementation