# Turn Off Irrelevant / Sounds like search result

**URL:** https://discuss.elastic.co/t/turn-off-irrelevant-sounds-like-search-result/251259
**Category:** Elastic Search
**Tags:** elastic-app-search
**Created:** [October 7, 2020, 11:44am UTC](https://discuss.elastic.co/t/turn-off-irrelevant-sounds-like-search-result/251259 "2020-10-07T11:44:13Z")
**Posts on this page:** 4
**Page:** 1

<div class="post-metadata">

### Author: ![Habib\_Ullah](https://sea2.discourse-cdn.com/elastic/user_avatar/discuss.elastic.co/habib_ullah/32/76794_2.png) [@Habib\_Ullah](https://discuss.elastic.co/u/Habib_Ullah)
#### Post date: [October 7, 2020, 11:44am UTC](https://discuss.elastic.co/t/turn-off-irrelevant-sounds-like-search-result/251259/1 "2020-10-07T11:44:14Z")

</div>

When I search for work "coke" app search return documents that never contain those words

 ![appsearch](https://us1.discourse-cdn.com/elastic/original/3X/f/2/f2a505182e935a91dae1b05c4f02a15d918997e6.png)

All these documents don't contain the word "coke" but they do contain "Smoked", I think the app search also matching word those have the same sound. is there any way to disable this?

---

<div class="post-metadata">

### Author: ![nickchow](https://sea2.discourse-cdn.com/elastic/user_avatar/discuss.elastic.co/nickchow/32/42547_2.png) [@nickchow](https://discuss.elastic.co/u/nickchow)
#### Post date: [October 7, 2020, 5:20pm UTC](https://discuss.elastic.co/t/turn-off-irrelevant-sounds-like-search-result/251259/2 "2020-10-07T17:20:35Z")

</div>

Thanks for the question @Habib_Ullah!

That behaviour is as expected. App Search leans towards recall over precision, so it casts a wider net. There isn't a way to disable that behaviour, though you can use [some Lucene Query Syntax functions](https://www.elastic.co/guide/en/app-search/current/search.html#search-search-queries) to refine your search,.

In your example, it will also look for terms that are similar to "coke" - so in this case, the "oke" in smoked is the closest match in your document set. Of course, if you did have any documents with the term "coke", those would surface first (if not, try adjusting your relevance tuning settings).

Hope that helps,  
Nick

---

<div class="post-metadata">

### Author: ![Mark\_Harwood](https://sea2.discourse-cdn.com/elastic/user_avatar/discuss.elastic.co/mark_harwood/32/10538_2.png) [@Mark\_Harwood](https://discuss.elastic.co/u/Mark_Harwood)
#### Post date: [October 12, 2020, 9:23am UTC](https://discuss.elastic.co/t/turn-off-irrelevant-sounds-like-search-result/251259/3 "2020-10-12T09:23:13Z")

</div>

> [@Habib\_Ullah](#):
>
> is there any way to disable this?

If you use any Boolean syntax the matching logic becomes whole-word rather than partial word so you can use any of these to match just `coke` and not `smoke`:

```
"coke"
coke OR coke
coke AND coke 
coke NOT thisWordDoesNotExist

```

---

<div class="post-metadata">

### Author: ![system](https://us1.discourse-cdn.com/elastic/original/3X/1/a/1ac57faf039f6b580b3f104ef42a2a89e41014de.png) [@system](https://discuss.elastic.co/u/system)
#### Post date: [November 9, 2020, 9:23am UTC](https://discuss.elastic.co/t/turn-off-irrelevant-sounds-like-search-result/251259/4 "2020-11-09T09:23:19Z")

</div>

This topic was automatically closed 28 days after the last reply. New replies are no longer allowed.
