Replace yajl-ruby with the json gem for JSON handling - #34
Open
Watson1978 wants to merge 1 commit into
Open
Conversation
This commit replaces the `yajl-ruby` dependency with Ruby's standard `json` gem for the following reasons: 1. Future Compatibility: `yajl-ruby` is no longer actively maintained and relies on internal C APIs that are removed in Ruby 4.1. Migrating to the standard `json` gem ensures the plugin can continue to be built and used in future Ruby environments. Ref. ruby/ruby#15447, brianmario/yajl-ruby#233 2. Performance: The standard `json` gem has seen significant improvements in recent updates and now outperforms `yajl-ruby`. ```ruby require 'bundler/inline' gemfile do source 'https://rubygems.org' gem 'benchmark-ips' gem 'yajl-ruby', require: 'yajl' gem 'json' end Benchmark.ips do |x| json = '{"a":"Alpha","b":true,"c":12345,"d":[true,[false,[-123456789,null],3.9676,["Something else.",false],null]],"e":{"zero":null,"one":1,"two":2,"three":[3],"four":[0,1,2,3,4]},"f":null,"h":{"a":{"b":{"c":{"d":{"e":{"f":{"g":null}}}}}}},"i":[[[[[[[null]]]]]]]}' x.report('Yajl.load') { Yajl.load(json) } x.report('JSON.parse') { JSON.parse(json) } x.compare! end ``` ``` ruby 4.0.5 (2026-05-20 revision 64336ffd0e) +PRISM [x86_64-linux] Warming up -------------------------------------- Yajl.load 20.019k i/100ms JSON.parse 80.144k i/100ms Calculating ------------------------------------- Yajl.load 202.875k (± 0.2%) i/s (4.93 μs/i) - 1.021M in 5.032515s JSON.parse 808.103k (± 0.2%) i/s (1.24 μs/i) - 4.087M in 5.057949s Comparison: JSON.parse: 808103.0 i/s Yajl.load: 202874.5 i/s - 3.98x slower ```
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This commit replaces the
yajl-rubydependency with Ruby's standardjsongem for the following reasons:yajl-rubyis no longer actively maintained and relies on internal C APIs that are removed in Ruby 4.1. Migrating to the standardjsongem ensures the plugin can continue to be built and used in future Ruby environments. Ref. [Misc #21768] Remove deprecated APIs ruby/ruby#15447, Can we release a new version for recent Ruby? brianmario/yajl-ruby#233jsongem has seen significant improvements in recent updates and now outperformsyajl-ruby.