Hacker News new | ask | show | jobs
by untothebreach 3910 days ago
Is it usable, performance-wise, in production yet? The company I work for (also a perl 5 shop) gave MoarVM a try about a year ago with a toy application, and it was just unusably slow. The task was just receiving some JSON on a TCP socket, decoding it, and sending a static response, but the round trip time was large enough that the server that made the request marked the transaction as 'timed-out' every time. (This is a task that we can do with perl 5 and still have time left over)
1 comments

Moar has come light-years over the past 12 months. It very well might be! Give it another try.

I recall a few months ago that a hand full of the benchmarks on JVM were actually running faster than Perl 5.latest, though most were slower.

Perl 6 is far, far more optimizable than Perl 5, and also most similar languages. The long-term focus on correct first is finally paying off.

Thanks for the info, I will give it another try.