Package org.apache.lucene.search
Class SearcherLifetimeManager.PruneByAge
- java.lang.Object
-
- org.apache.lucene.search.SearcherLifetimeManager.PruneByAge
-
- All Implemented Interfaces:
SearcherLifetimeManager.Pruner
- Enclosing class:
- SearcherLifetimeManager
public static final class SearcherLifetimeManager.PruneByAge extends java.lang.Object implements SearcherLifetimeManager.Pruner
Simple pruner that drops any searcher older by more than the specified seconds, than the newest searcher.
-
-
Constructor Summary
Constructors Constructor Description PruneByAge(double maxAgeSec)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
doPrune(double ageSec, IndexSearcher searcher)
Return true if this searcher should be removed.
-
-
-
Method Detail
-
doPrune
public boolean doPrune(double ageSec, IndexSearcher searcher)
Description copied from interface:SearcherLifetimeManager.Pruner
Return true if this searcher should be removed.- Specified by:
doPrune
in interfaceSearcherLifetimeManager.Pruner
- Parameters:
ageSec
- how much time has passed since this searcher was the current (live) searchersearcher
- Searcher
-
-