# New Ticket Created by  Zoffix Znet 
# Please include the string:  [perl #127364]
# in the subject line of all future correspondence about this issue. 
# <URL: https://rt.perl.org/Ticket/Display.html?id=127364 >


I was playing around and noticed that using .race makes this code actually run 
5 times SLOWER. This a 2-core machine, so my expectations were the code would 
run 0%-100% FASTER than .race-less version.

The produced results are consistent. Here's the normal version:

$ perl6 -e '.base: 16 for ^100000; say now - INIT now'
2.33417984

And here's the .race version:
$ perl6 -e '.base: 16 for ^100000 .race; say now - INIT now'
10.3816176

Reply via email to