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 3237500
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 17, 20262026-05-17T17:44:45+00:00 2026-05-17T17:44:45+00:00

I dont think its needed but i was curious instead of generating a query

  • 0

I dont think its needed but i was curious

instead of generating a query string and searching lucene with it (ex “tag: abc 123 id:(2 or 99 or 123)”) could i build a struct/class and pass it in?

using lucene.net

  • 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-17T17:44:46+00:00Added an answer on May 17, 2026 at 5:44 pm

    Do you mean using directly the query API?

    If yes take a look at BooleanQuery: http://lucene.apache.org/java/2_9_3/api/core/index.html

    If you look in the Lucene.Net.Search namespace you will find a lot of query classes, and then you use the BooleanQuery class to combine them

    BooleanQuery mainQuery = new BooleanQuery();
    // add terms to the query
    mainQuery.Add(new TermQuery(new Term("tag", "abc")), BooleanClause.Occur.MUST);
    mainQuery.Add(new TermQuery(new Term("tag", "123")), BooleanClause.Occur.MUST);
    
    // for the parentheses, do a sub BooleanQuery
    BooleanQuery idQuery = new BooleanQuery();
    idQuery.Add(new TermQuery(new Term("id", "2")), BooleanClause.Occur.SHOULD);
    idQuery.Add(new TermQuery(new Term("id", "99")), BooleanClause.Occur.SHOULD);
    idQuery.Add(new TermQuery(new Term("id", "123")), BooleanClause.Occur.SHOULD);
    
    // append subquery to the main
    mainQuery.Add(idQuery, BooleanClause.Occur.MUST);
    

    Then pass the mainQuery object to one of the Searcher‘s method that takes a query in parameter.

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

Sidebar

Related Questions

I love Ruby and its framework, but I don't think that Ruby On Rails
I dont think you can do this, but just in case, I can but
I don't think this is possible, but if is then I need it :)
I don't think that this is specific to a language or framework, but I
my problem is quite simple, but very important in general - I think. I
I actually have two questions regarding the same problem but I think it is
How do I put a program in the system tray (I don't think it's
Based on a simple test I ran, I don't think it's possible to put
I'm seeing an ambiguous error in Firebug. I don't think it's particularly related to
I'm using aspnet_compiler.exe to precompile my application for deployment. However, I don't think it's

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.