[Date Prev][Date Next][Thread Prev][Thread Next]
[Date Index]
[Thread Index]
- Subject: Re: [ANN] Lua 5.3.0 (work2) now available
- From: Roberto Ierusalimschy <roberto@...>
- Date: Mon, 24 Mar 2014 14:49:19 -0300
> I'm experiencing a strange slowdown in 5.3 when creating lots of
> closures. Example script is attached. It runs in under half a second
> on 5.1 and 5.2, but needs minutes in 5.3 ...
Many thanks for the report. For some reason, the GC is running much
faster (~once for every closure created) than it should in this program
and causing the slowdown. (If we stop the collector before the call to
'create_closures', the slowdown disapears.) We will have to check
why this is happening.
-- Roberto