PERF: Use Oj for serializing JSON. (#7820)
This commit is contained in:
parent
82f2af8a0d
commit
1942ba1d42
|
@ -1,4 +1,8 @@
|
|||
# frozen_string_literal: true
|
||||
|
||||
Oj::Rails.set_encoder()
|
||||
Oj::Rails.set_decoder()
|
||||
Oj::Rails.optimize()
|
||||
|
||||
# Not sure why it's not using this by default!
|
||||
MultiJson.engine = :oj
|
||||
|
|
|
@ -0,0 +1,19 @@
|
|||
# frozen_string_literal: true
|
||||
|
||||
require "rails_helper"
|
||||
|
||||
describe 'Oj' do
|
||||
it "is enabled" do
|
||||
classes = Set.new
|
||||
tracer = TracePoint.new(:c_call) { |tp| classes << tp.defined_class }
|
||||
tracer.enable { ActiveModel::ArraySerializer.new([1, 2, 3]).to_json }
|
||||
|
||||
expect(classes).to include(Oj::Rails::Encoder)
|
||||
end
|
||||
|
||||
it "escapes HTML entities the same as ActiveSupport" do
|
||||
expect("<b>hello</b>".to_json).to eq("\"\\u003cb\\u003ehello\\u003c/b\\u003e\"")
|
||||
expect('"hello world"'.to_json). to eq('"\"hello world\""')
|
||||
expect("\u2028\u2029><&".to_json).to eq('"\u2028\u2029\u003e\u003c\u0026"')
|
||||
end
|
||||
end
|
Loading…
Reference in New Issue