Files
elasticsearch-js/docs/_examples/mlt.asciidoc
2013-12-27 16:41:38 -07:00

12 lines
247 B
Plaintext

.Search for similar documents using the `title` property of document `myindex/mytype/1`
[source,js]
---------
client.mlt({
index: 'myindex',
type: 'mytype',
id: 1,
mlt_fields: 'title'
}, function (errors, response) {
// ...
});
---------