I wonder why a lot of programmers claim that Lua is faster than any other scripting language?
What did they do that is more efficient than other languages?
Is there something completely different in their approach?
What makes their code run faster than Python, for example?
|
|
|||||||||||||||
|
closed as not constructive by Will♦ Feb 24 at 7:42
As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.
|
It was designed for very light-weight embedding. Lua as an executable is about 50k and comes with almost no libraries. It's design to be a scripting language to sit on top of C so it doesn't bother with a full regex parser or even a socket library. It's faster than other interpreted languages because it was optimised for speed rather than convenience. This is not to say it's necessarily the FASTEST interpreted language either. There are other lesser-known languages like IO and angelscript that can give lua a run for its money in speed benchmarks. |
|||||||||||||||||
|
|
They're really good engineers and have been doing this for a long time. The two big wins seem to be their register-based VM and good memory management.
A couple of other things that contribute to speed:
|
||||
|
|
|
From Wikipedia:
Lua also seems to be a smaller language than e.g. Python which has to take care of much more situations (metaprogramming). |
|||||||||
|
|
About the claim: it seems that some benchmarks like the Computer Language Benchmarks Game shows that, for most programs, it is faster than most interpreted languages. Why? I am not a specialist, but I know the language have been designed by a small number of people (but hearing remarks and suggestions from users), using a carefully hand-tuned parser and VM, with a garbage collector designed for speed (to be usable in games), etc. |
|||
|
|
|
Lua has some very nice language features which allow implementers to compose higher level language features from these core features:
This means that if a particular programming methodology (functinoal, OO, or dynamic) is proves best for your situation, then you can use it. On the other hand, if you want to make a small benchmark you're not really burdened by these features. Clearly python isn't a deficient language, and pypy's stackless API has some features I find very compelling that Lua doesn't yet have (tho with coroutines it could be implemented in a library). |
||||
|
|
|
In addition to Norman's answer, note that when when people say that Lua is the "fastest scripting language" they often really mean its LuaJIT implementation. LuaJIT is fast because it combines what is probably the most advanced tracing JIT compiler on earth with a super-fast Lua interpreter with lots of parts written in assembly language (this interpreter alone is much faster than the reference implementation of Lua, which has other goals such as portability). The reason this technological marvel targets Lua, though, is that it is a very simple language compared to most scripting languages, which makes its implementation easier. Consider that LuaJIT is written by a single person, Mike Pall. He does think something similar could be done for other languages though, but it would require more effort. For more about this, see this comment by Brendan Eich (creator of JavaScript), this one by Mike Pall and the rest of this awesome LtU thread while you're at it ;) |
||||
|
|
|
If you find Lua hard to pick up, or prefer a more procedural syntax, try Agena. It's author says,
|
|||||
|
|
First and foremost: where did you see this claim about speed? Anyway, a wild guess: a simpler and smaller language, with cleaner semantics and a small number of orthogonal mechanisms eliminates many special cases that a larger language, such as Python, must handle. |
|||||
|