lua-users home
lua-l archive

[Date Prev][Date Next][Thread Prev][Thread Next] [Date Index] [Thread Index]


On 06/25/2018 09:00 AM, Russell Haley wrote:
> Raw numbers on Windows 10 - Third Gen i7 laptop
> 
> Lua 5.3:
> https://pastebin.com/ti0MwpxN
> 
> Lua 5.4:
> https://pastebin.com/ZVrUDZfv
> 
> 5.4 seems a smidgen faster.
> 
> Night,
> Russ

It's strange that on your machine there is no difference.

Idea was to exploit new garbage collector. More specifically,
it's performance in registering new objects. Which gives
two-fold performance drop on my machine. It looks like
on your machine new collector works just same (or disabled
in both cases). I have no ideas to explain this.

-- Martin