0

CouchDB-Lucene のデフォルトの組み合わせはOR次のようです。

artist:muse track:"feeling good"

戻る可能性があります:

{ "artist": "Muse", "track": "Feeling Good", "score": 5.9 }
{ "artist": "Nina Simone", "track": "Feeling Good", "score": "1.2" }

ここの一番上のような 2 つのステートメントがAND「d」ではなく「一緒に」と見なされるように CouchDB-Lucene を構成するにはどうすればよいORですか?

4

1 に答える 1

1

https://github.com/rnewson/couchdb-lucene/にある私の readme ファイルから、パラメーターを使用してこれを変更できます。

default_operator
Change the default operator for boolean queries. Defaults to "OR", 
other permitted value is "AND".

あれは;

?q="hello there"&default_operator="AND"
于 2013-07-04T15:30:18.970 に答える