[Date Prev][Date Next][Thread Prev][Thread Next]
[Date Index]
[Thread Index]
- Subject: Re: Yielding across lua_load
- From: Patrick Donnelly <batrick@...>
- Date: Mon, 12 Oct 2015 23:20:27 -0400
On Mon, Oct 12, 2015 at 9:52 PM, Soni L. <fakedme@gmail.com> wrote:
> Also the solution with wrapping load() and concatenating the strings
> manually... probably doesn't work when you're memory constrained.
Uh, you have enough memory for the bytecode of a chunk but not the
chunk's source? That sounds ridiculous. Even so, you have options
available: you could (1) compress the chunk by stripping
comments/whitespace and/or (2) zip compress the chunk received off the
wire and decompress in the reader.
--
Patrick Donnelly
- References:
- Yielding across lua_load, Soni L.
- Re: Yielding across lua_load, Patrick Donnelly
- Re: Yielding across lua_load, Soni L.
- Re: Yielding across lua_load, Christian N.
- Re: Yielding across lua_load, Tim Hill
- Re: Yielding across lua_load, Soni L.
- Re: Yielding across lua_load, Tim Hill
- Re: Yielding across lua_load, Soni L.
- Re: Yielding across lua_load, Tim Hill
- Re: Yielding across lua_load, Soni L.