simdjson-java: A High-Performance Java JSON Parser
simdjson-java is a Java version of simdjson, a JSON parser that leverages SIMD instructions to achieve high parsing throughput. Based on the paper "Parsing Gigabytes of JSON per Second" by Geoff Langdale and Daniel Lemire, simdjson-java aims to provide developers with a fast and efficient JSON parsing solution.
While simdjson-java is still a work in progress and lacks some features available in simdjson, it already offers impressive performance. To benchmark the library, you can run the JMH benchmarks using the provided commands. Additionally, you can run tests to ensure the correctness of the parser.
In a performance comparison of different JSON parsers available as Java libraries, simdjson-java showcased its capabilities by parsing and finding all unique users with a default profile in the twitter.json dataset. Although the library is still missing some features, the results demonstrate its potential for high-speed JSON parsing.
To reproduce the benchmark results, execute the following command:
./gradlew jmh -Pjmh.includes='.*ParseAndSelectBenchmark.*'
simdjson-java is a valuable addition to the Java ecosystem, providing developers with a powerful tool for efficient JSON parsing. Stay tuned for further updates and enhancements as the library continues to evolve.