of     1   

script_frog
#182283369Sunday, January 24, 2016 3:58 AM GMT

so, is having a table and jsonencoding it the best way to save data? or is it best to encrypt it in some way? i make u math.sqrt()
128Gigabytes
#182284116Sunday, January 24, 2016 4:09 AM GMT

Just save it as a table it'll encode and decode itself for you.
script_frog
#182284560Sunday, January 24, 2016 4:16 AM GMT

but is that the most compact encoding method i could use? i make u math.sqrt()
script_frog
#182285179Sunday, January 24, 2016 4:25 AM GMT

x i make u math.sqrt()
128Gigabytes
#182285938Sunday, January 24, 2016 4:37 AM GMT

Depends what values will your table save Give me an example table
LongKillKreations
#182287625Sunday, January 24, 2016 5:04 AM GMT

if you really need to, you can compress the data datastores have a limit of something like ~65k JSON string characters
script_frog
#182317238Sunday, January 24, 2016 5:36 PM GMT

its not too complex of a table, but it does include subtables example inventory = { [1] = {"Hat","Color"}, -- the same repeats } i make u math.sqrt()
128Gigabytes
#182322565Sunday, January 24, 2016 6:44 PM GMT

You can not have a dictionary table with numbers as keys, unless those keys are 1, 2, 3 etc (Because it reads that like a normal table You could always json your table and print it and see what characters are not needed and make your own json function to make it as compact as you can

    of     1