TODO 462 B

12345678910
  1. - Make encode/decode routines OS thread safe (within the same lua_State)
  2. - Optionally create an object for settings. Clone function.
  3. - Explain limitations of using JSON as a serialisation format under Lua:
  4. - Tables keys:
  5. - Must only be integer or string
  6. - Integer keys will be deserialised as a string
  7. - Metamethods are not used when encoding tables:
  8. - next() is used to iterate over hashes.
  9. - rawget() is used when iterating over arrays.