vote up 6 vote down star
1

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?

flag

why the downvote? – the_drow May 23 at 18:12
2  
i like the question - maybe you should give some information about who claims Lua to be more efficient (post links). – Dario May 23 at 18:14
Well of course that users in #Lua channel in freenode but I've also heard other claims from experienced game developers. It is also the choice of many popular games like WOW because it's faster. – the_drow May 23 at 18:56

7 Answers

vote up 4 vote down check

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.

link|flag
I see that IO is the same as Lua with binding. I really dislike that bloated and verbose C code. Would you recommend AngelScript? – the_drow May 23 at 19:25
I'd recommend Lua. I haven't used the others, just come across them in the past. The only program I know that uses AngelScript is the Apocalyx engine and I haven't seen anything that uses IO. – SpliFF May 24 at 3:02
Lua imo is too complicated to bind/embed because of it's messy C interface. It looks too low level for something that complicated. I tried to use SWIG but I couldn't really figure it out. IO seems to bind the same way as Lua and AngelScript provides an easier, object oriented approch which I'm more used to. – the_drow May 24 at 6:06
2  
"IO ... can give lua a run for its money in speed benchmarks" Really? shootout.alioth.debian.org/gp4/… – igouy May 24 at 17:33
1  
Lua's C interface is quite clean. SWIG is harder to check out. Have you read lua.org/pil? – Norman Ramsey May 25 at 3:05
show 2 more comments
vote up 12 vote down

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.

  • I think it was Roberto Ierusalimschy and David Gregg who did a very careful sequence of experiments comparing register-based VMs with stack-based VMs. Register-based VMs turn out to express similar programs with fewer VM instructions and so less decoding overhead.

  • The memory management is a serious incremental garbage collector, and it's completely accurate, not conservative. No mucking about with reference counting. To make this possible, the C API is very carefully crafted not to expose heap-allocated Lua objects directly to C code. You can see this in the evoluation from Lua 2.5 to Lua 5.

A couple of other things that contribute to speed:

  • They have an extremely clever implementation of first-class functions which makes exactly the right tradeoffs for a scripting language in which it is rare for a function to return a function. As a result they typically get screamingly fast access to local variables.

  • They've put in a lot of effort on their implementation of tables (dictionaries, hashes, associative arrays, whatever you wish to call them) so that they are very efficient whether used as lists, sets, arrays, or general-purpose data structures. A good example of how to succeed by doing only one thing and doing it very well—the Lua table is the only mutable data structure in the language.

link|flag
vote up 3 vote down

From Wikipedia:

Lua programs are not interpreted directly from the textual Lua file, but are compiled into bytecode which is then run on the Lua virtual machine. The compilation process is typically transparent to the user and is performed during run-time, but it can be done offline in order to increase loading performance or reduce the memory footprint of the host environment by leaving out the compiler.

Like most CPUs, and unlike most virtual machines (which are stack-based), the Lua VM is register-based, and therefore more closely resembles an actual hardware design. The register architecture both avoids excessive copying of values and reduces the total number of instructions per function. The virtual machine of Lua 5 is the first register-based VM to have a wide use.[4] Parrot (currently in development) is an another well-known register-based VM.

Lua also seems to be a smaller language than e.g. Python which has to take care of much more situations (metaprogramming).

link|flag
Is there any differences in the code? I'm interested in their parser and vm. I'm investigating so I'll learn how to write my own scripting language for practice. – the_drow May 23 at 18:58
Running from bytecode isn't really that unique; almost all VMs, even the JavaScript VMs in your browser, do that (PHP a notable exception; this is part of why PHP is so horrendously slow). – cookiecaper May 23 at 19:23
cookiecaper: PHP does in fact have a byte-code intermediary. In plain vanilla PHP, it's dismissed right after evaluation, but you can install an opcode cache. – troelskn Jun 1 at 18:05
vote up 2 vote down

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.

link|flag
vote up 1 vote down

Lua has some very nice language features which allow implementers to compose higher level language features from these core features:

  • function closures, multi-return, and proper tail-recursion - together these allow Lua to operate as a functional language, even performing list operations on varargs and multi-return ranges and efficient use of the stack. Lua's multi-return in the standard library to define a very light iterator pattern which can be implemented by user functions with or closures depending on how you feel about side-effects.
  • mutable closures - function references in Lua define closures on the variables defined in that scope, and allow changes to these (unlike pure functional languages), this allows implementers to achieve OO data encapsulation.
  • replaceable metatable - all values in Lua have a standard metatable which defines operators on that value, including index and newindex and with lua's fake-OO call notation this lets implementers achieve OO polymorphism

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).

link|flag
vote up 0 vote down

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.

link|flag
Many, many programmers claim this here and on IRC. – the_drow May 23 at 18:02
It's also a big reason that Lua has such a following in game development. The interpreter is easily embedded and perceived to be much faster than something like Python. – cookiecaper May 23 at 19:24
vote up 0 vote down

If you find Lua hard to pick up, or prefer a more procedural syntax, try Agena. It's author says,

Agena is based on the ANSI C source code of Lua, a popular and widely used OpenSource programming language.

link|flag
No thanks, I prefer OOP. But that's a nice scripting language. – the_drow Jun 4 at 4:10

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.