[Date Prev][Date Next][Thread Prev][Thread Next]
[Date Index]
[Thread Index]
- Subject: Re: Extract a list of keys from table
- From: "Javier Guerra" <javier@...>
- Date: Fri, 18 Jul 2008 15:29:04 -0500
another interesting observation:
LuaJIT impact:
noop : 816%
c : 166%
generated: 392%
recursive: 320%
unpack : 158%
both 'generated' and 'recursive' spend most of the time calling
functions and shuffling values in the stack, and get a 3-4 times boost
by LuaJIT. 'c' and 'unpack' OTOH, spend time in non-vm tasks (your C
function and allocation, respectively), and get ony 1.5x speedup.
--
Javier