Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 3989180
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 20, 20262026-05-20T06:20:29+00:00 2026-05-20T06:20:29+00:00

Title asks it all… I want to do a multi field – phrase search

  • 0

Title asks it all… I want to do a multi field – phrase search in Lucene.. How to do it ?

for example :
I have fields as String s[] = {"title","author","content"};
I want to search harry potter across all fields.. How do I do it ?

Can someone please provide an example snippet ?

  • 1 1 Answer
  • 2 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-20T06:20:30+00:00Added an answer on May 20, 2026 at 6:20 am
    1. Use MultiFieldQueryParser, its a QueryParser which constructs queries to search multiple fields..

    2. Other way is to use Create a BooleanQuery consisting of TermQurey (in your case phrase query).

    3. Third way is to include the content of other fields into your default content field.


    Add

    Generally speaking, querying on multiple fields isn’t the best practice for user-entered queries. More commonly, all words you want searched are indexed into a contents or keywords field by combining various fields.


    Update

    Usage:

    Query query = MultiFieldQueryParser.parse(Version.LUCENE_30, new String[] {"harry potter","harry potter","harry potter"},   new String[] {"title","author","content"},new SimpleAnalyzer());
    IndexSearcher searcher = new IndexSearcher(...);
    Hits hits = searcher.search(query);
    

    The MultiFieldQueryParser will resolve the query in this way: (See javadoc)

    Parses a query which searches on the
    fields specified. If x fields are
    specified, this effectively
    constructs:

    (field1:query1) (field2:query2)
    (field3:query3)…(fieldx:queryx)

    Hope this helps.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

The title asks it all. I have found an example that looked something like
I have a php web application that asks the user for all fields' values
Title said it all. Some context: I got a search mechanism - search view,
As the title asks, what's the difference between Stop Debugging and Terminate All in
The title asks it all. The content on the site I'm building wont change
All, As the title asks, is it possible to change the __get__ method of
Title asks it all, actually, but still, for completeness sake: Hi, I'm writing a
I'm building an employment application form that's dynamic. I want a field that asks
Title kinda asks it all. I'm not referring to $_REQUEST , $_SERVER and all
Just as the title asks, does C++ have the equivalent of Python's setitem and

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.