|
Apache Tomcat 7.0.28 | ||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object org.apache.tomcat.util.buf.StringCache
public class StringCache
This class implements a String cache for ByteChunk and CharChunk.
Nested Class Summary | |
---|---|
static class |
StringCache.ByteEntry
|
static class |
StringCache.CharEntry
|
Field Summary | |
---|---|
protected static int |
accessCount
Access count. |
protected static StringCache.ByteEntry[] |
bcCache
Cache for byte chunk. |
protected static int |
bcCount
toString count for byte chunk. |
protected static HashMap<StringCache.ByteEntry,int[]> |
bcStats
Statistics hash map for byte chunk. |
protected static boolean |
byteEnabled
Enabled ? |
protected static int |
cacheSize
|
protected static StringCache.CharEntry[] |
ccCache
Cache for char chunk. |
protected static int |
ccCount
toString count for char chunk. |
protected static HashMap<StringCache.CharEntry,int[]> |
ccStats
Statistics hash map for char chunk. |
protected static boolean |
charEnabled
|
protected static int |
hitCount
Hit count. |
protected static int |
maxStringSize
|
protected static int |
trainThreshold
|
Constructor Summary | |
---|---|
StringCache()
|
Method Summary | |
---|---|
protected static int |
compare(ByteChunk name,
byte[] compareTo)
Compare given byte chunk with byte array. |
protected static int |
compare(CharChunk name,
char[] compareTo)
Compare given char chunk with char array. |
protected static String |
find(ByteChunk name)
Find an entry given its name in the cache and return the associated String. |
protected static String |
find(CharChunk name)
Find an entry given its name in the cache and return the associated String. |
protected static int |
findClosest(ByteChunk name,
StringCache.ByteEntry[] array,
int len)
Find an entry given its name in a sorted array of map elements. |
protected static int |
findClosest(CharChunk name,
StringCache.CharEntry[] array,
int len)
Find an entry given its name in a sorted array of map elements. |
int |
getAccessCount()
|
boolean |
getByteEnabled()
|
int |
getCacheSize()
|
boolean |
getCharEnabled()
|
int |
getHitCount()
|
int |
getTrainThreshold()
|
void |
reset()
|
void |
setByteEnabled(boolean byteEnabled)
|
void |
setCacheSize(int cacheSize)
|
void |
setCharEnabled(boolean charEnabled)
|
void |
setTrainThreshold(int trainThreshold)
|
static String |
toString(ByteChunk bc)
|
static String |
toString(CharChunk cc)
|
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Field Detail |
---|
protected static boolean byteEnabled
protected static boolean charEnabled
protected static int trainThreshold
protected static int cacheSize
protected static int maxStringSize
protected static HashMap<StringCache.ByteEntry,int[]> bcStats
protected static int bcCount
protected static StringCache.ByteEntry[] bcCache
protected static HashMap<StringCache.CharEntry,int[]> ccStats
protected static int ccCount
protected static StringCache.CharEntry[] ccCache
protected static int accessCount
protected static int hitCount
Constructor Detail |
---|
public StringCache()
Method Detail |
---|
public int getCacheSize()
public void setCacheSize(int cacheSize)
cacheSize
- The cacheSize to set.public boolean getByteEnabled()
public void setByteEnabled(boolean byteEnabled)
byteEnabled
- The enabled to set.public boolean getCharEnabled()
public void setCharEnabled(boolean charEnabled)
charEnabled
- The enabled to set.public int getTrainThreshold()
public void setTrainThreshold(int trainThreshold)
trainThreshold
- The trainThreshold to set.public int getAccessCount()
public int getHitCount()
public void reset()
public static String toString(ByteChunk bc)
public static String toString(CharChunk cc)
protected static final int compare(ByteChunk name, byte[] compareTo)
protected static final String find(ByteChunk name)
protected static final int findClosest(ByteChunk name, StringCache.ByteEntry[] array, int len)
protected static final int compare(CharChunk name, char[] compareTo)
protected static final String find(CharChunk name)
protected static final int findClosest(CharChunk name, StringCache.CharEntry[] array, int len)
|
Apache Tomcat 7.0.28 | ||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |