A Ruby bindings for simdjson.
Add this line to your application's Gemfile:
gem'simdjson'And then execute:
$ bundle Or install it yourself as:
$ gem install simdjson Simdjson.parse returns a Hash (if successful).
require'simdjson'pSimdjson.parse%|{"a": 12345}|# =>{"a"=>12345}Simdjson.parse%|abcd|# => raise Simdjson::ParseError- Bug reports and pull requests are welcome on GitHub at https://github.com/saka1/simdjson_ruby.
Please use clang-format like this:
$ clang-format -style=file -i ext/simdjson/* The gem is available as open source under the terms of the MIT License.