Class CacheManager
- All Implemented Interfaces:
Serializable
,Cloneable
,ConfigElement
,Searchable
,org.apache.jmeter.testelement.TestElement
,TestIterationListener
,TestStateListener
- See Also:
-
Nested Class Summary
Nested classes/interfaces inherited from interface org.apache.jmeter.testelement.TestElement
org.apache.jmeter.testelement.TestElement.Companion
-
Field Summary
Fields inherited from class org.apache.jmeter.config.ConfigTestElement
PASSWORD, USERNAME
Fields inherited from interface org.apache.jmeter.testelement.TestElement
COMMENTS, Companion, ENABLED, GUI_CLASS, NAME, TEST_CLASS
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionvoid
clear()
create a cache manager that share the underlying cache of the current one it allows to use the same cache in different threads which does not inherit from each otherboolean
boolean
int
boolean
boolean
Deprecated.boolean
boolean
void
saveDetails
(URLConnection conn, HTTPSampleResult res) Save the Last-Modified, Etag, and Expires headers if the result is cacheable.void
saveDetails
(org.apache.http.HttpResponse method, HTTPSampleResult res) Save the Last-Modified, Etag, and Expires headers if the result is cacheable.void
setClearEachIteration
(boolean clear) void
setControlledByThread
(boolean control) void
setHeaders
(HttpURLConnection conn, Header[] headers, URL url) Check the cache, and if there is a match, set the headers: If-Modified-Since If-None-Matchvoid
setHeaders
(URL url, org.apache.http.client.methods.HttpRequestBase request) Check the cache, and if there is a match, set the headers: If-Modified-Since If-None-Match Apache HttpClient version.void
setMaxSize
(int size) void
setUseExpires
(boolean expires) void
Called once for all threads after the end of a test.void
Called once for all threads after the end of a test.void
Each time through a Thread Group's test script, an iteration event is fired for each thread.void
Called just before the start of the test from the main engine thread.void
testStarted
(String host) Called just before the start of the test from the main engine thread.Methods inherited from class org.apache.jmeter.config.ConfigTestElement
addConfigElement, addTestElement, expectsModification, getProps, getSchema
Methods inherited from class org.apache.jmeter.testelement.AbstractTestElement
addPropertiesValues, addProperty, addProperty, canRemove, clearTemporary, clearTestElementChildren, clone, emptyTemporary, equals, getComment, getName, getProperty, getPropertyAsBoolean, getPropertyAsBoolean, getPropertyAsDouble, getPropertyAsFloat, getPropertyAsInt, getPropertyAsInt, getPropertyAsLong, getPropertyAsLong, getPropertyAsString, getPropertyAsString, getPropertyOrNull, getSearchableTokens, getThreadContext, getThreadName, hashCode, isEnabled, isRunningVersion, isTemporary, logProperties, mergeIn, propertyIterator, recoverRunningVersion, removeProperty, setComment, setEnabled, setName, setProperty, setProperty, setProperty, setProperty, setProperty, setProperty, setProperty, setProperty, setProperty, setRunningVersion, setTemporary, setThreadContext, setThreadName, traverse, traverseCollection, traverseMap, traverseProperty
Methods inherited from class java.lang.Object
finalize, getClass, notify, notifyAll, toString, wait, wait, wait
Methods inherited from interface org.apache.jmeter.config.ConfigElement
clone
Methods inherited from interface org.apache.jmeter.testelement.TestElement
get, get, get, get, get, get, get, get, get, getOrCreate, getOrCreate, getOrNull, getOrNull, getOrNull, getPropertyOrNull, getString, removed, removeProperty, set, set, set, set, set, set, set, set, set
-
Field Details
-
CLEAR
- See Also:
-
USE_EXPIRES
- See Also:
-
MAX_SIZE
- See Also:
-
-
Constructor Details
-
CacheManager
public CacheManager()
-
-
Method Details
-
getControlledByThread
public boolean getControlledByThread() -
setControlledByThread
public void setControlledByThread(boolean control) -
saveDetails
Save the Last-Modified, Etag, and Expires headers if the result is cacheable. Version for Java implementation.- Parameters:
conn
- connectionres
- result
-
saveDetails
Save the Last-Modified, Etag, and Expires headers if the result is cacheable. Version for Apache HttpClient implementation.- Parameters:
method
-HttpResponse
to extract header information fromres
- result to decide if result is cacheable
-
setHeaders
Check the cache, and if there is a match, set the headers:- If-Modified-Since
- If-None-Match
- Parameters:
url
-URL
to look up in cacherequest
- where to set the headers
-
setHeaders
Check the cache, and if there is a match, set the headers:- If-Modified-Since
- If-None-Match
-
inCache
Deprecated.use a version ofinCache(URL, Header[])
orinCache(URL, org.apache.jmeter.protocol.http.control.Header[])
Check the cache, if the entry has an expires header and the entry has not expired, returntrue
- Parameters:
url
-URL
to look up in cache- Returns:
true
if entry has an expires header and the entry has not expired, elsefalse
-
inCache
-
inCache
-
getClearEachIteration
public boolean getClearEachIteration() -
setClearEachIteration
public void setClearEachIteration(boolean clear) -
getUseExpires
public boolean getUseExpires() -
setUseExpires
public void setUseExpires(boolean expires) -
getMaxSize
public int getMaxSize()- Returns:
- int cache max size
-
setMaxSize
public void setMaxSize(int size) - Parameters:
size
- int cache max size
-
clear
public void clear()Description copied from class:AbstractTestElement
- Specified by:
clear
in interfaceorg.apache.jmeter.testelement.TestElement
- Overrides:
clear
in classAbstractTestElement
-
createCacheManagerProxy
create a cache manager that share the underlying cache of the current one it allows to use the same cache in different threads which does not inherit from each other- Returns:
- a cache manager that share the underlying cache of the current one
- Since:
- 3.0
-
testStarted
public void testStarted()Description copied from interface:TestStateListener
Called just before the start of the test from the main engine thread. This is before the test elements are cloned. Note that not all the test variables will have been set up at this point.
N.B. testStarted() and testEnded() are called from different threads.
- Specified by:
testStarted
in interfaceTestStateListener
- See Also:
-
testEnded
public void testEnded()Description copied from interface:TestStateListener
Called once for all threads after the end of a test. This will use the same element instances as at the start of the test.
N.B. testStarted() and testEnded() are called from different threads.
- Specified by:
testEnded
in interfaceTestStateListener
- See Also:
-
testStarted
Description copied from interface:TestStateListener
Called just before the start of the test from the main engine thread. This is before the test elements are cloned. Note that not all the test variables will have been set up at this point.
N.B. testStarted() and testEnded() are called from different threads.
- Specified by:
testStarted
in interfaceTestStateListener
- Parameters:
host
- name of host- See Also:
-
testEnded
Description copied from interface:TestStateListener
Called once for all threads after the end of a test. This will use the same element instances as at the start of the test.
N.B. testStarted() and testEnded() are called from different threads.
- Specified by:
testEnded
in interfaceTestStateListener
- Parameters:
host
- name of host- See Also:
-
testIterationStart
Description copied from interface:TestIterationListener
Each time through a Thread Group's test script, an iteration event is fired for each thread. This will be after the test elements have been cloned, so in general the instance will not be the same as the ones the start/end methods call.- Specified by:
testIterationStart
in interfaceTestIterationListener
- Parameters:
event
- the iteration event
-
inCache(URL, Header[])
orinCache(URL, org.apache.jmeter.protocol.http.control.Header[])