文件名称:multi_json:用于JSON处理的通用可交换后端
文件大小:39KB
文件格式:ZIP
更新时间:2024-03-20 01:40:07
Ruby
多JSON 许多Ruby库都解析JSON,每个人都有自己喜欢的JSON编码器。 可以选择使用MultiJSON,而不是选择单个JSON编码器并强制库的用户使用它,而只需选择最快的可用JSON编码器即可。 使用方法如下: require 'multi_json' MultiJson . load ( '{"abc":"def"}' ) #=> {"abc" => "def"} MultiJson . load ( '{"abc":"def"}' , :symbolize_keys => true ) #=> {:abc => "def"} MultiJson . dump ( { :abc => 'def' } ) # convert Ruby back to JSON MultiJson . dump ( { :abc => 'def' } , :pretty => true ) #
【文件预览】:
multi_json-master
----.travis.yml(2KB)
----Rakefile(717B)
----gemfiles()
--------gemfile-1-8-jruby(241B)
--------gemfile-2-jruby(180B)
--------gemfile-1-9-jruby(229B)
--------gemfile-1-8(191B)
--------gemfile-1-9(225B)
--------gemfile-2-3(222B)
--------gemfile-2-0(222B)
----.yardopts(70B)
----CONTRIBUTING.md(2KB)
----multi_json.gemspec(1KB)
----.rspec(23B)
----.document(61B)
----spec()
--------shared()
--------nsjsonserialization_adapter_spec.rb(252B)
--------ok_json_adapter_spec.rb(178B)
--------multi_json_spec.rb(6KB)
--------jr_jackson_adapter_spec.rb(224B)
--------json_gem_adapter_spec.rb(272B)
--------gson_adapter_spec.rb(207B)
--------json_pure_adapter_spec.rb(274B)
--------oj_adapter_spec.rb(1KB)
--------yajl_adapter_spec.rb(207B)
--------options_cache_spec.rb(521B)
--------spec_helper.rb(2KB)
----LICENSE.md(1KB)
----.gitignore(240B)
----CHANGELOG.md(13KB)
----lib()
--------multi_json()
--------multi_json.rb(4KB)
----README.md(5KB)
----benchmark.rb(196B)