Fasun
Fasun

Reputation: 73

Can ElasticSearch return relevant passages and not the entire document

I'm looking for a search engine that is able to return just relevant passages as a result and not the entire documents. Is ElasticSearch able to do this?

Upvotes: 1

Views: 1033

Answers (1)

xeraa
xeraa

Reputation: 10859

If you are looking to extract part of a long document, look at Highlighting. Specifically parameters like fragment_size (100 characters by default) or boundary_chars will help you to build that functionality.

Upvotes: 2

Related Questions