lua-users home
lua-l archive

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


You may also want to look at the RBF format used by the recently
released Dawn of War II game - it is basically a serialised Lua table
intended to be very fast to load (I can post details if people are
interested).

On Mon, Feb 23, 2009 at 12:24 AM, Fabien <fleutot+lua@gmail.com> wrote:
> Hi,
>
> do you handle shared sub-tables? i.e. would tables t1 and t2 below be
> serialized correctly?
>
> x = { }
> t1 = { x, x }
> t2 = { }; t2[1] = t2
>
> If not, do you plan to ever support these?
>
> -- Fabien.
>