| java.lang.Object org.apache.oro.text.GenericPatternCache org.apache.oro.text.PatternCacheLRU
PatternCacheLRU | final public class PatternCacheLRU extends GenericPatternCache (Code) | | This class is a GenericPatternCache subclass implementing an LRU
(Least Recently Used) cache replacement policy. In other words,
patterns are added to the cache until it becomes full. Once the
cache is full, when a new pattern is added to the cache, it replaces
the least recently used pattern currently in the cache. This is probably
the best general purpose pattern cache replacement policy.
version: @version@ since: 1.0 See Also: GenericPatternCache |
PatternCacheLRU | public PatternCacheLRU(int capacity, PatternCompiler compiler)(Code) | | Creates a PatternCacheLRU instance with a given cache capacity,
and initialized to use a given PatternCompiler instance as a pattern
compiler.
Parameters: capacity - The capacity of the cache. Parameters: compiler - The PatternCompiler to use to compile patterns. |
PatternCacheLRU | public PatternCacheLRU(PatternCompiler compiler)(Code) | | Same as:
PatternCacheLRU(GenericPatternCache.DEFAULT_CAPACITY, compiler);
|
PatternCacheLRU | public PatternCacheLRU(int capacity)(Code) | | Same as:
PatternCacheLRU(capacity, new Perl5Compiler());
|
PatternCacheLRU | public PatternCacheLRU()(Code) | | Same as:
PatternCacheLRU(GenericPatternCache.DEFAULT_CAPACITY);
|
|
|