[Date Prev][Date Next][Thread Prev][Thread Next]
[Date Index]
[Thread Index]
- Subject: Re: stackoverflow with LuaJIT 2.0.0-beta6 (but not with lua 5.1.4)
- From: Geoff Leyland <geoff_leyland@...>
- Date: Thu, 21 Apr 2011 09:32:00 +1200
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