mirror of
https://github.com/bblanchon/ArduinoJson.git
synced 2025-08-08 07:04:41 +02:00
Updated FAQ (markdown)
3
FAQ.md
3
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).
|
||||
|
||||
|
Reference in New Issue
Block a user