From 7f670398bb2f5e9a9cb724006779e49b4480400c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Beno=C3=AEt=20Blanchon?= Date: Thu, 25 Aug 2016 13:45:04 +0200 Subject: [PATCH] Updated FAQ (markdown) --- FAQ.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/FAQ.md b/FAQ.md index f7dce52..c761b54 100644 --- a/FAQ.md +++ b/FAQ.md @@ -380,6 +380,7 @@ See issue [#166](https://github.com/bblanchon/ArduinoJson/issues/166), [#271](ht ### Can I parse data from a stream? +### Can I parse a JSON input that is too big to fit in memory? No. @@ -406,7 +407,7 @@ char json[MAX_SIZE]; stream.readBytesUntil('\n', json, MAX_JSON_SIZE); ``` -If this is not acceptable, you should have a look at other libraries, like [aJson](https://github.com/interactive-matter/aJson). +If this is not acceptable, you should have a look at other libraries, like [json-streaming-parser](https://github.com/squix78/json-streaming-parser). See issues [#60](https://github.com/bblanchon/ArduinoJson/issues/60), [#119](https://github.com/bblanchon/ArduinoJson/issues/119), [#194](https://github.com/bblanchon/ArduinoJson/issues/194), [#200](https://github.com/bblanchon/ArduinoJson/issues/200) and [#223](https://github.com/bblanchon/ArduinoJson/issues/223).