aboutsummaryrefslogtreecommitdiff
path: root/TODO
diff options
context:
space:
mode:
Diffstat (limited to 'TODO')
-rw-r--r--TODO10
1 files changed, 8 insertions, 2 deletions
diff --git a/TODO b/TODO
index a17bc1b..72d9b63 100644
--- a/TODO
+++ b/TODO
@@ -1,4 +1,10 @@
1- Option to configure encoding escapes.
2
3- Make encode/decode routines OS thread safe (within the same lua_State) 1- Make encode/decode routines OS thread safe (within the same lua_State)
4 - Optionally create an object for settings. Clone function. 2 - Optionally create an object for settings. Clone function.
3
4- Explain limitations of using JSON as a serialisation format under Lua:
5 - Tables keys:
6 - Must only be integer or string
7 - Integer keys will be deserialised as a string
8 - Metamethods are not used when encoding tables:
9 - next() is used to iterate over hashes.
10 - rawget() is used when iterating over arrays.