| java.lang.Object org.apache.oro.text.GenericPatternCache org.apache.oro.text.PatternCacheFIFO2
PatternCacheFIFO2 | final public class PatternCacheFIFO2 extends GenericPatternCache (Code) | | This class is a GenericPatternCache subclass implementing a second
chance FIFO (First In First Out) cache replacement policy. In other
words, patterns are added to the cache until the cache becomes full.
Once the cache is full, when a new pattern is added to the cache, it
replaces the first of the current patterns in the cache to have been
added, unless that pattern has been used recently (generally
between the last cache replacement and now).
If the pattern to be replaced has been used, it is given
a second chance, and the next pattern in the cache is tested for
replacement in the same manner. If all the patterns are given a
second chance, then the original pattern selected for replacement is
replaced.
version: @version@ since: 1.0 See Also: GenericPatternCache |
PatternCacheFIFO2 | public PatternCacheFIFO2(int capacity, PatternCompiler compiler)(Code) | | Creates a PatternCacheFIFO2 instance with a given cache capacity,
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. |
PatternCacheFIFO2 | public PatternCacheFIFO2(PatternCompiler compiler)(Code) | | Same as:
PatternCacheFIFO2(GenericPatternCache.DEFAULT_CAPACITY, compiler);
|
PatternCacheFIFO2 | public PatternCacheFIFO2(int capacity)(Code) | | Same as:
PatternCacheFIFO2(capacity, new Perl5Compiler());
|
PatternCacheFIFO2 | public PatternCacheFIFO2()(Code) | | Same as:
PatternCacheFIFO2(GenericPatternCache.DEFAULT_CAPACITY);
|
|
|