lua-users home
lua-l archive

[Date Prev][Date Next][Thread Prev][Thread Next] [Date Index] [Thread Index]


On 21.01.2011 20:08, Steve Litt wrote:

> You know what I might try someday? Make a C module to store each number in a 
> bit instead of a byte.

Be careful here, this actually may be slower than pure lua version,
because there is a cost of crossing Lua/C boundary. Been there...
I would go with pure lua on luajit2 if you want performance.

Regards,
miko