Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Search / Similar document improvement.
When using more like this query in Elastic (https://www.elastic.co/guide/en/elasticsearch/reference/current/query-dsl-mlt-query.html) it can be sometimes useful to be able to compare the full document for better match. Configuration like: ```json { "like": [ { "_id": null } ], "analyzer": "english", "minimum_should_match": "40%" } ``` will search for ```json { "like": [ { "_id": "f48b5a47-1394-4667-81fd-b2e515593d20" }, "Copernicus EEA38 Boundary Layer with 250 m buffer (raster 20m), version 1, Nov. 2022" ], "analyzer": "english", "minimum_should_match": "40%" } ``` Add documentation about the configuration of more like this query.
- Loading branch information