Lucene++ - a full-featured, c++ search engine
API Documentation


 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Pages
ParallelMultiSearcher.h
Go to the documentation of this file.
1 
2 // Copyright (c) 2009-2014 Alan Wright. All rights reserved.
3 // Distributable under the terms of either the Apache License (Version 2.0)
4 // or the GNU Lesser General Public License.
6 
7 #ifndef PARALLELMULTISEARCHER_H
8 #define PARALLELMULTISEARCHER_H
9 
10 #include "MultiSearcher.h"
11 
12 namespace Lucene {
13 
18 class LPPAPI ParallelMultiSearcher : public MultiSearcher {
19 public:
22  virtual ~ParallelMultiSearcher();
23 
25 
26 public:
29  virtual int32_t docFreq(const TermPtr& term);
30 
33  virtual TopDocsPtr search(const WeightPtr& weight, const FilterPtr& filter, int32_t n);
34 
37  virtual TopFieldDocsPtr search(const WeightPtr& weight, const FilterPtr& filter, int32_t n, const SortPtr& sort);
38 };
39 
40 }
41 
42 #endif

clucene.sourceforge.net