Zhai Mo
Zhai Mo
I noticed that simd-json offers two main entry points for usage: 'Values API' and 'Serde Compatible API'. I ran benches/parse.rs to test the performance. I added code below to test...
Good to know that the schema-based parsing were implemented! I have two more questions: 1. As line 54 in src/main/java/org/simdjson/SchemaBasedJsonIterator.java says: "Lists at the root are not supported. Consider using...
In class JsonValue, the default size of buffer and stringBuffer, as well as long[] tape in class Tape, is 34M. But in practice it's not necessary. This patch reduce the...
I'm running code below: ``` private final SimdJsonParser simdJsonParser = new SimdJsonParser(); String str1 = "{\"a\": \"1\", \"b\": \"11\", \"c\": \"111\"}"; byte[] buffer1 = str1.getBytes(); JsonValue simdJsonValue1 = simdJsonParser.parse(buffer1, buffer1.length);...
I've been testing the performance of Simdjson recently. The basic test is similar to default test, using twitter.json, as below: ```java @Benchmark public int recordSimdjson() { Set defaultUsers = new...
I ran the benchmark of serialization, but the result seemed wield, I'd like to know why. Command: `./run ser --libs jackson,dsljson,dsljson_reflection --apis databind` CPU: Intel(R) Xeon(R) Gold 5120 CPU @...