Re: Drawing the line between speed and simplicity/elegance
[
Date Prev][
Date Next][
Thread Prev][
Thread Next]
[
Date Index]
[
Thread Index]
- Subject: Re: Drawing the line between speed and simplicity/elegance
- From: Roberto Ierusalimschy <roberto@...>
- Date: Sat, 9 May 2015 14:01:51 -0300
> Using the C API will make LuaJIT's performance bottom out. If you're
> worried about performance across VMs, stick to pure Lua.
That is not a valid advice across VMs. C code is much faster than
(non-JIT) Lua code. So, not using the C API will hurt Lua performance.
-- Roberto