Method: Elasticsearch::Persistence::Repository::Serialize#deserialize

Defined in:
lib/elasticsearch/persistence/repository/serialize.rb

#deserialize(document) ⇒ Object

Deserialize the document retrieved from Elasticsearch into a Ruby object. If no klass is set for the Repository then the raw document ‘_source’ field will be returned.

def deserialize(document)

Note.new document[SOURCE]

end

Parameters:

  • document (Hash)

    The raw document.

Returns:

  • (Object)

    The deserialized object.

Since:

  • 6.0.0


51
52
53
# File 'lib/elasticsearch/persistence/repository/serialize.rb', line 51

def deserialize(document)
  klass ? klass.new(document[SOURCE]) : document[SOURCE]
end