summaryrefslogtreecommitdiff
path: root/lib/ffi_yajl/benchmark/http.rb
blob: 50c9367721e8cd5b7c3856e2547a96103e21ec26 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
$LOAD_PATH.unshift File.expand_path(File.dirname(__FILE__) + "/..")
$LOAD_PATH.unshift File.expand_path(File.dirname(__FILE__) + "/../lib")

require "rubygems" unless defined?(Gem)
require "benchmark" unless defined?(Benchmark)
require "yajl/http_stream"
require "yajl/gzip"
require "yajl/deflate"
require "yajl/bzip2" unless defined?(Bzip2)
require "json" unless defined?(JSON)
require "uri" unless defined?(URI)
require "net/http" unless defined?(Net::HTTP)

uri = URI.parse("http://search.twitter.com/search.json?q=github")
# uri = URI.parse('http://localhost/yajl-ruby.git/benchmark/subjects/contacts.json')

times = ARGV[0] ? ARGV[0].to_i : 1
puts "Starting benchmark parsing #{uri} #{times} times\n\n"
Benchmark.bmbm do |x|
  x.report do
    puts "Yajl::HttpStream.get"
    times.times { Yajl::HttpStream.get(uri) }
  end
  x.report do
    puts "JSON.parser"
    times.times { JSON.parse(Net::HTTP.get_response(uri).body, max_nesting: false) }
  end
end