simdjson_ruby
simdjson_ruby copied to clipboard
Ruby bindings for simdjson
The Makefile generated by extconf.rb has changed in Ruby 3.0. Therefore, when using Ruby 3.0, the optimization flags are not set properly and it reduced the performance. This patch will...
I recently wrote up a post about how much faster simdjson_ruby can be than OJ and other options. [see blog post](https://www.mayerdan.com/ruby/2020/11/15/benchmarking-JSON-parser) While that is all true, when you need things...
I was looking to contribute to the gem, but it blows up after cloning when trying to get up and running... A bit of docs on dev setup or what...
I've run into a problem where a UTF-8 encoded string is parsed by `Simdjson.parse` and one of the resulting strings is encoded in ASCII-8BIT. I can reproduce this like so:...
The current implementation has two steps: 1. Parse JSON string and construct a tape 2. Generate ruby instances from the tape According to the roadmap(https://github.com/simdjson/simdjson/issues/997), SAJ API will be available...