From 46a64e76ce7b396ef023d3197a1a46aeb9b9bcdd Mon Sep 17 00:00:00 2001 From: Ales Teska Date: Fri, 22 Mar 2024 16:31:40 +0100 Subject: [PATCH] Update README.md --- README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 161c146..4f7e2e1 100644 --- a/README.md +++ b/README.md @@ -55,7 +55,8 @@ The speed of `cysimdjson` is based on these assumptions: 1) The output of the parser is read-only, you cannot modify it 2) The output of the parser is not Python dictionary, but lazily evaluated dictionary-like object -3) If you convert the parser output into a Python dictionary, you will lose the speed +3) The parser output is valid only until `JSONParser` object is still alive (not destroyed), otherwise you will get ugly errors +4) If you convert the parser output into a Python dictionary, you will lose the speed If your design is not aligned with these assumptions, `cysimdjson` is not a good choice.