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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 24, 20262026-05-24T01:00:42+00:00 2026-05-24T01:00:42+00:00

I am currently working on a project involving the Lucene library within C# however

  • 0

I am currently working on a project involving the Lucene library within C# however I have reached an issue with design of my project concerning the retrevial of documents within the index. The documents within my index have been created with several fields and i’d like to be able to filter between two of these fields and then search this subset for terms however I am still familiarising myself with lucene and am not fully sure if this is possible. I have learnt how to perform basic queries but I think I should be using lucenes filter class but i am not exactly sure how. I would be greatful if anyone could offer advice on this

The project I am completing involves indexing email messages from various email accounts. the documents in my index have some of the following fields:
Account: (e.g. fake@fake.com)
Folder: (e.g. sent, trash, inbox…)
Data: (the body of the email)

I’d like to be able to filter my index so i can have a subset which only containts documents from a particular account and folder and then after this I’d like to be able to search the data field of this subset.

  • 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-24T01:00:43+00:00Added an answer on May 24, 2026 at 1:00 am

    As @Jf Beaulac suggested, you can do “filtering” with a BooleanQuery.

    private Query CreateFilteredQuery (string account, string folder, Query criteria)
    {
         BooleanQuery bq = new BooleanQuery();
         bq.Add(new TermQuery (new Lucene.Net.Index.Term ("account", account)), BooleanClause.Occur.MUST);
         bq.Add(new TermQuery (new Lucene.Net.Index.Term ("folder", folder)), BooleanClause.Occur.MUST);
         bq.Add(criteria, BooleanClause.Occur.MUST);
         return bq;
    }
    
    
    Query filteredQuery = CreateFilteredQuery ("fake@fake.com", "inbox", myQueryParser.Parse (criteria));
    var hits = myIndexSearcher.Search (filteredQuery);
    

    Here is a good question about the differences between queries and filters: Why do we use Filters while searching

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

Sidebar

Related Questions

I am currently working on a project where I have to design / implement
I'm currently working on a project with a one page design that'll slide up
I'm currently working on a project involving a form generator. The user can switch
I am currently working on a project where I have several string that may
I am currently working on project where I have to match up a large
I'm currently working on project with Haskell, and have found myself some trouble. I'm
Iam currently working on a project where i have to read serial port continuously.
I'm currently working on a project, where we have the challenge to process items
I am currently working on project about car travelling http://wayfi.ru and I have encountered
I am currently working on a project which allows users to design a small

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.