[Date Prev][Date Next][Thread Prev][Thread Next]
[Date Index]
[Thread Index]
- Subject: Re: Lua: Performance
- From: "Alex Davies" <alex.mania@...>
- Date: Fri, 25 Jul 2008 21:33:47 +0800
Rob's right, if you're getting close to no performance increase from LuaJit
in your app then the performance problem is likely not with Lua. By the
sounds of it you've identified this yourself by stating that it's the C
calls and mcO which is taking the time.
Try to remember that you can spend as long as you like optimising a piece of
code that is run 5% of the time, but the most you can hope to gain a 5%
increase in application speed. Which about explains why LuaJit gave you no
performance increase.
- Alex