Well, one issue is that  Paddle* Arm* has an implicit OR between the terms. Try

+Paddle* +Arm*

That'll reduce the documents found, although it would find "Paddle
robotic armature" (no such thing, just sayin').

Although another possibility is that you're really sending

some_field:Paddle* Arm*

which is parsed as

some_field:Paddle* default_search_field:Arm*


 “Paddle Arm” should find the last two. I suspect you're using
"string" type for the field you're searching against rather than a
text-based field that tokenizes. You must show us the fieldType of the
field and the results of &debug=query added to the URL to have a hope
of saying anything more.

And if you really need phrases and wildcards, see Complex Phrase Query
Parser here: https://lucene.apache.org/solr/guide/6_6/other-parsers.html.
But before going there, I'd figure out wha't up with not being able to
search "Paddle Arm" as a phrase, it should certainly do what you're
asking given the right field definition.

Best,
Erick

On Mon, Jul 10, 2017 at 12:10 PM, Miller, William K - Norman, OK -
Contractor <william.k.mil...@usps.gov.invalid> wrote:
> I forgot to mention that I am using Solr 6.5.1 and I am indexing XML files.
> My Solr server is running on a Linux OS.
>
>
>
>
>
>
>
>
>
> ~~~~~~~~~~~~~~~~~~~~~~~
>
> William Kevin Miller
>
> ECS Federal, Inc.
>
> USPS/MTSC
>
> (405) 573-2158
>
>
>
> From: Miller, William K - Norman, OK - Contractor
> [mailto:william.k.mil...@usps.gov.INVALID]
> Sent: Monday, July 10, 2017 2:03 PM
> To: 'solr-user@lucene.apache.org'
> Subject: Returning results for multi-word search term
>
>
>
> I am trying to return results when using a multi-word term.  I am using
> “Paddle Arm” as my search term(including the quotes).  I know that the field
> that I am querying against has these words together.  If I run the query
> using Paddle* Arm* I get the following results, but I want to get only the
> last two.  I have looked at Fuzzy Searches but that I don’t feel will work
> and I have looked at the Proximity Searches and I get no results back with
> that one whether I use 0,1 or 10.  How can I structure my query to get the
> last items in the below list?
>
>
>
> Paddle Assembly
>
> Paddle
>
> Paddle
>
> Paddle Pneumatic Piping
>
> Paddle
>
> Paddle Assembly
>
> Paddle
>
> Paddle Assembly
>
> Paddle to Bucket Offset Check
>
> Paddle to Bucket Wall
>
> Paddle to Bucket Offset
>
> Paddle
>
> Paddle Assembly Troubleshooting
>
> Paddle Assembly Troubleshooting
>
> Paddle Air Pressure
>
> Paddle Assembly
>
> Paddle
>
> Paddle Stop Adjustment
>
> Paddle Stop
>
> Paddle Assembly
>
> Paddle Assembly
>
> Paddle Vacuum Holes
>
> Paddle Position
>
> Paddle Detection Sensor Adjustment
>
> Paddle Assembly
>
> Paddle
>
> Paddle Assembly
>
> Paddle Stop
>
> Paddle Assembly
>
> Paddle Assembly
>
> Paddle
>
> Paddle Assembly
>
> Paddle Assembly
>
> Paddle Rotary Actuator
>
> Paddle Removal and Replacement
>
> Paddle Assembly
>
> Paddle Removal and Replacement
>
> Paddle Seal Removal and Replacement
>
> Paddle Location
>
> Paddle Location
>
> Paddle Removal Location
>
> Paddle/Belt Speed for Photoeye Inputs
>
> Paddle Arm Spring, Upper Paddle Arm, and Lower Paddle Arm
>
> Paddle Arm Spring, Upper Paddle Arm, and Lower Paddle Arm
>
>
>
>
>
>
>
>
>
> ~~~~~~~~~~~~~~~~~~~~~~~
>
> William Kevin Miller
>
> ECS Federal, Inc.
>
> USPS/MTSC
>
> (405) 573-2158
>
>

Reply via email to