[Date Prev][Date Next][Thread Prev][Thread Next]
[Date Index]
[Thread Index]
- Subject: Re: Can I save size by dumping a table of chunks? (and, how do I do it?)
- From: Luiz Henrique de Figueiredo <lhf@...>
- Date: Thu, 6 May 2010 06:58:27 -0300
> > The Lua compiler already optimizes all constants used in a function and
> > so only one copy of each string exists per function. However, different
> > functions, even if defined in the same chunk, do not share constants
> > (strings, in particular).
>
> no? i thought each string was unique lua_State-wide
That is correct. I meant that for precompiled chunks created by luac.