diff options
Diffstat (limited to 'README')
-rw-r--r-- | README | 13 |
1 files changed, 13 insertions, 0 deletions
@@ -204,6 +204,19 @@ the application. Eg: | |||
204 | a = {}; b = { a }; a[1] = b | 204 | a = {}; b = { a }; a[1] = b |
205 | 205 | ||
206 | 206 | ||
207 | Number precision | ||
208 | ---------------- | ||
209 | |||
210 | precision = cjson.encode_number_precision([precision]) | ||
211 | -- "precision" must be between 1 and 14 (inclusive) | ||
212 | |||
213 | By default CJSON will use up to 14 digits for precision when | ||
214 | converting a number to text. | ||
215 | |||
216 | Reducing number precision to 3 can improve performance of number | ||
217 | heavy conversions by up to 50%. | ||
218 | |||
219 | |||
207 | Persistent encoding buffer | 220 | Persistent encoding buffer |
208 | ------------------------- | 221 | ------------------------- |
209 | 222 | ||