Teo Choong Ping
Teo Choong Ping

Reputation: 12808

Search for a phrase within a field

I have indexed document in Solr that looks like this:

   {
    "name":["Michael"],
    "keywords":["partnerships,business development,marketing,head of product development"],
    "id":"10023e3ze5n8glm6b",
    "city":["sf"],
    "_version_":1549772729479069696},

I can search for the document with

 "product management"
 "management product"

but this doesn't work if I try to search within the keywords field,

 keywords:"product management"

How can I search for a phrase within a field?

Upvotes: 0

Views: 36

Answers (1)

jai dutt
jai dutt

Reputation: 790

you should try

fq=keywords:*product management*

Upvotes: 1

Related Questions