A default JSON serializer (using [MultiJSON](rubygems.org/gems/multi_json))
Serialize a Hash to JSON string
# File lib/elasticsearch/transport/transport/serializer/multi_json.rb, line 29 def dump(object, options={}) ::MultiJson.dump(object, options) end
De-serialize a Hash from JSON string
# File lib/elasticsearch/transport/transport/serializer/multi_json.rb, line 23 def load(string, options={}) ::MultiJson.load(string, options) end