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

  • Home
  • SEARCH
  • 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 557149
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 13, 20262026-05-13T11:59:43+00:00 2026-05-13T11:59:43+00:00

I read How to incorporate multiple fields in QueryParser? but i didn’t get it.

  • 0

I read How to incorporate multiple fields in QueryParser? but i didn’t get it.

At the moment i have a very strange construction like:

parser = New QueryParser("bodytext", analyzer)
parser2 = New QueryParser("title", analyzer)
query = parser.Parse(strSuchbegriff)
query2 = parser.Parse(strSuchbegriff)

What can i do for something like:

parser = New QuerParser ("bodytext" , "title",analyzer)
query =parser.Parse(strSuchbegriff) 

so the Parser looks for the searching word in the field “bodytext” an in the field “title”.

  • 1 1 Answer
  • 0 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-13T11:59:43+00:00Added an answer on May 13, 2026 at 11:59 am

    There are 3 ways to do this.

    The first way is to construct a query manually, this is what QueryParser is doing internally. This is the most powerful way to do it, and means that you don’t have to parse the user input if you want to prevent access to some of the more exotic features of QueryParser:

    IndexReader reader = IndexReader.Open("<lucene dir>");
    Searcher searcher = new IndexSearcher(reader);
    
    BooleanQuery booleanQuery = new BooleanQuery();
    Query query1 = new TermQuery(new Term("bodytext", "<text>"));
    Query query2 = new TermQuery(new Term("title", "<text>"));
    booleanQuery.add(query1, BooleanClause.Occur.SHOULD);
    booleanQuery.add(query2, BooleanClause.Occur.SHOULD);
    // Use BooleanClause.Occur.MUST instead of BooleanClause.Occur.SHOULD
    // for AND queries
    Hits hits = searcher.Search(booleanQuery);
    

    The second way is to use MultiFieldQueryParser, this behaves like QueryParser, allowing access to all the power that it has, except that it will search over multiple fields.

    IndexReader reader = IndexReader.Open("<lucene dir>");
    Searcher searcher = new IndexSearcher(reader);
    
    Analyzer analyzer = new StandardAnalyzer();
    MultiFieldQueryParser queryParser = new MultiFieldQueryParser(
                                            new string[] {"bodytext", "title"},
                                            analyzer);
    
    Hits hits = searcher.Search(queryParser.parse("<text>"));
    

    The final way is to use the special syntax of QueryParser see here.

    IndexReader reader = IndexReader.Open("<lucene dir>");
    Searcher searcher = new IndexSearcher(reader);    
    
    Analyzer analyzer = new StandardAnalyzer();
    QueryParser queryParser = new QueryParser("<default field>", analyzer);
    // <default field> is the field that QueryParser will search if you don't 
    // prefix it with a field.
    string special = "bodytext:" + text + " OR title:" + text;
    
    Hits hits = searcher.Search(queryParser.parse(special));
    

    Your other option is to create new field when you index your content called bodytextandtitle, into which you can place the contents of both bodytext and title, then you only have to search one field.

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

Sidebar

Related Questions

Read that the following code is an example of unsafe construction as it allows
I read about django signals ( http://docs.djangoproject.com/en/dev/topics/signals/ ), but as far as I understand,
I read a few documents about Mutex and still the only Idea I have
I read about Session Hijacking articles and would like to some more information related
I'm using HTC Dream and trying to read the images stored in the default
I have the following simple Python code that makes a simple post request to
Read a list of files with R, each file contains a list of float
I read that for user-defined types, postponing the defintion of a variable until a
Cannot read http://www.earnforex.com/blog/2010/08/forex-technical-analysis-for-week-0809%E2%80%940813/ how to encode the url to be able to read it
I want to develop a system that can track and follow a road. Initially,

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.