I wonder why a lot of programmers claim that Lua is faster then any other scripting language?
What did they do that is more efficient then other languages?
Is there something completely different in their approach?
What makes their code run faster then Python for example?
|
1
|
|
||||||||
|
|
|
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 less well 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). |
|||
|
|
|
|
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. |
||||
|
|
|
If you find Lua hard to pick up, or prefer a more procedural syntax, try Agena. It's author says,
|
||
|
