lua-users home
lua-l archive

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


On 21/04/2011, at 4:08 AM, Nathan Wayde wrote:

> I can't get luatrace to run right now

What's the problem?  luatrace won't work with luajit unless you use -joff (which is a shame, I know).

> but that split function doesn't look right.

As far as I can tell, the split function doesn't actually get used.  Is that right?

It looks like most of the time is spent concatenating strings on the lines

out = out..encode(v)

and

return out..'e'

Have you tried making 'out' a table, appending strings to it and then doing a table.concat as you return it?


Cheers,
Geoff