From: Veit J. <nun...@go...> - 2012-02-27 14:39:12
|
Hi David, the current CLucene version is a port of Lucene 2.3.2. But these methods were introduced in a later version of Lucene (> 3, I think). So, there no way to do paging out of the box.You have to implement it yourself. Maybe Lucene++ [1] supports this. It is a port of a later Lucene version by Alan and Ben. We tried once to make this the new CLucene version, but havn't finished it yet. Kind regards, Veit [1] https://github.com/luceneplusplus/LucenePlusPlus 2012/2/27 David Linde <dav...@gm...> > I am using CLucene 2.3.3.2 - I want to implement searchAfter in CLucene - > or at least using paging with TopDocs? is there a way to do the same thing > with CLucene 2.3.3.2 out of box? > > Thanks in advance! > > TopDocs<http://lucene.apache.org/core/old_versioned_docs/versions/3_5_0/api/core/org/apache/lucene/search/TopDocs.html> > *searchAfter<http://lucene.apache.org/core/old_versioned_docs/versions/3_5_0/api/core/org/apache/lucene/search/IndexSearcher.html#searchAfter%28org.apache.lucene.search.ScoreDoc,%20org.apache.lucene.search.Query,%20org.apache.lucene.search.Filter,%20int%29> > *(ScoreDoc<http://lucene.apache.org/core/old_versioned_docs/versions/3_5_0/api/core/org/apache/lucene/search/ScoreDoc.html> > after, Query<http://lucene.apache.org/core/old_versioned_docs/versions/3_5_0/api/core/org/apache/lucene/search/Query.html> > query, Filter<http://lucene.apache.org/core/old_versioned_docs/versions/3_5_0/api/core/org/apache/lucene/search/Filter.html> filter, > int n) > Finds the top n hits for query, applying filter if non-null, > where all results are after a previous result (after). TopDocs<http://lucene.apache.org/core/old_versioned_docs/versions/3_5_0/api/core/org/apache/lucene/search/TopDocs.html> > *searchAfter<http://lucene.apache.org/core/old_versioned_docs/versions/3_5_0/api/core/org/apache/lucene/search/IndexSearcher.html#searchAfter%28org.apache.lucene.search.ScoreDoc,%20org.apache.lucene.search.Query,%20int%29> > *(ScoreDoc<http://lucene.apache.org/core/old_versioned_docs/versions/3_5_0/api/core/org/apache/lucene/search/ScoreDoc.html> > after, Query<http://lucene.apache.org/core/old_versioned_docs/versions/3_5_0/api/core/org/apache/lucene/search/Query.html> query, > int n) > Finds the top n hits for query where all results are after a > previous result (after). > > > ------------------------------------------------------------------------------ > Try before you buy = See our experts in action! > The most comprehensive online learning library for Microsoft developers > is just $99.99! Visual Studio, SharePoint, SQL - plus HTML5, CSS3, MVC3, > Metro Style Apps, more. Free future releases when you subscribe now! > http://p.sf.net/sfu/learndevnow-dev2 > _______________________________________________ > CLucene-developers mailing list > CLu...@li... > https://lists.sourceforge.net/lists/listinfo/clucene-developers > > |