您好,登錄后才能下訂單哦!
這篇文章主要介紹“怎么解決elasticsearch should和must共存時(shí)should失效的問(wèn)題”,在日常操作中,相信很多人在怎么解決elasticsearch should和must共存時(shí)should失效的問(wèn)題問(wèn)題上存在疑惑,小編查閱了各式資料,整理出簡(jiǎn)單好用的操作方法,希望對(duì)大家解答”怎么解決elasticsearch should和must共存時(shí)should失效的問(wèn)題”的疑惑有所幫助!接下來(lái),請(qǐng)跟著小編一起來(lái)學(xué)習(xí)吧!
再使用must和should混合查詢的時(shí)候,發(fā)現(xiàn)should并不起作用。
如a==1時(shí)搜索b=1或者b=2的數(shù)據(jù),按照編程語(yǔ)言的邏輯則是在a=1的條件下必須滿足b=1或者b=2,
所以must和should平級(jí)的寫法是錯(cuò)誤的。
注意錯(cuò)誤寫法
根據(jù)搜索結(jié)果可以發(fā)現(xiàn)should并未起作用
正確寫法
$params = [ 'index' => 'news', 'type' => '_doc', 'body' => [ 'query' => [ 'bool' => [ 'must' => [ ['match' => ['age' => 50]], ['bool' => [ 'should' => [ ['match' => ['content' => '西紅柿']], ['match' => ['content' => '中國(guó)和美國(guó)']] ] ]] ] ] ] ] ]; $result = $this->es->search($params); var_dump($result);
搜索結(jié)果
例如在a=1且b=2的數(shù)據(jù)中,找出c=1或者d=2的數(shù)據(jù): {"query": { "bool": { "must": [ {"term": {"a": "1"}}, {"term":{"b": "2"}} ], "should": [ {"term": {"c": "1"}}, {"term": {"d": "2"}} ] } } } 這樣寫的時(shí)候should是沒(méi)有用的,這是新手可能犯的錯(cuò)誤之一。 在編寫查詢條件的時(shí)候,不能用口頭上的邏輯進(jìn)行編寫,而是要換成數(shù)學(xué)邏輯才能進(jìn)行執(zhí)行(數(shù)據(jù)庫(kù)同理)。 如上例,數(shù)學(xué)邏輯應(yīng)該是 (a==1&&b==2&&c==1)||(a==1&&b==2&&d==2),這樣的結(jié)構(gòu)去查詢。 {"query": { "bool": { "should": [ {"term": {"a": "1"}}, {"term":{"b": "2"}}, {"term": {"c": "1"}} ], "should": [ {"term": {"a": "1"}}, {"term":{"b": "2"}}, {"term": {"d": "2"}} ] } } } 思路就是以上那樣,具體寫法有2種: { "query": { "bool": { "should": [ { "bool": { "must": [ {"term": {"a": "1"}}, {"term":{"b": "2"}}, {"term": {"c": "1"}} ] } }, { "bool": { "must": [ {"term": {"a": "1"}}, {"term":{"b": "2"}}, {"term": {"d": "2"}} ] } } ] } }, "sort": { "time": { "order": "desc" } }, "size": 100 } 或者: { "query": { "bool": { "must": [ {"term": {"a": "1"}}, {"term":{"b": "2"}} { "bool": { "should": [ {"term": {"c": "1"}}, {"term": {"d": "2"}} ] } } ] } }, "sort": { "time": { "order": "desc" } }, "size": 100 }
到此,關(guān)于“怎么解決elasticsearch should和must共存時(shí)should失效的問(wèn)題”的學(xué)習(xí)就結(jié)束了,希望能夠解決大家的疑惑。理論與實(shí)踐的搭配能更好的幫助大家學(xué)習(xí),快去試試吧!若想繼續(xù)學(xué)習(xí)更多相關(guān)知識(shí),請(qǐng)繼續(xù)關(guān)注億速云網(wǎng)站,小編會(huì)繼續(xù)努力為大家?guī)?lái)更多實(shí)用的文章!
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。