Package org.eclipse.jetty.server.session
Class CachingSessionDataStore
java.lang.Object
org.eclipse.jetty.util.component.AbstractLifeCycle
org.eclipse.jetty.util.component.ContainerLifeCycle
org.eclipse.jetty.server.session.CachingSessionDataStore
- All Implemented Interfaces:
SessionDataMap,SessionDataStore,Container,Destroyable,Dumpable,Dumpable.DumpableContainer,LifeCycle
@Deprecated(since="2021-05-27")
public class CachingSessionDataStore
extends ContainerLifeCycle
implements SessionDataStore
Deprecated.
The Eclipse Jetty and Apache Felix Http Jetty packages are no longer supported.
CachingSessionDataStore
A SessionDataStore is a mechanism for (persistently) storing data associated with sessions.
This implementation delegates to a pluggable SessionDataStore for actually storing the
session data. It also uses a pluggable cache implementation in front of the
delegate SessionDataStore to improve performance: accessing most persistent store
technology can be expensive time-wise, so introducing a fronting cache
can increase performance. The cache implementation can either be a local cache,
a remote cache, or a clustered cache.
The implementation here will try to read first from the cache and fallback to
reading from the SessionDataStore if the session key is not found. On writes, the
session data is written first to the SessionDataStore, and then to the cache. On
deletes, the data is deleted first from the SessionDataStore, and then from the
cache. There is no transaction manager ensuring atomic operations, so it is
possible that failures can result in cache inconsistency.
-
Nested Class Summary
Nested classes/interfaces inherited from class org.eclipse.jetty.util.component.AbstractLifeCycle
AbstractLifeCycle.AbstractLifeCycleListenerNested classes/interfaces inherited from interface org.eclipse.jetty.util.component.Container
Container.InheritedListener, Container.ListenerNested classes/interfaces inherited from interface org.eclipse.jetty.util.component.Dumpable
Dumpable.DumpableContainerNested classes/interfaces inherited from interface org.eclipse.jetty.util.component.LifeCycle
LifeCycle.Listener -
Field Summary
-
Constructor Summary
ConstructorsConstructorDescriptionCachingSessionDataStore(SessionDataMap cache, SessionDataStore store) Deprecated. -
Method Summary
Modifier and TypeMethodDescriptionbooleanDeprecated.Delete session databooleanDeprecated.Test if data exists for a given session id.getExpired(Set<String> candidates) Deprecated.Called periodically, this method should search the data store for sessions that have been expired for a 'reasonable' amount of time.Deprecated.Deprecated.voidinitialize(SessionContext context) Deprecated.Initialize this data map for the given context.booleanDeprecated.True if this type of datastore will passivate session objectsDeprecated.Read in session data.newSessionData(String id, long created, long accessed, long lastAccessed, long maxInactiveMs) Deprecated.Create a new SessionDatavoidstore(String id, SessionData data) Deprecated.Store the session data.Methods inherited from class org.eclipse.jetty.util.component.ContainerLifeCycle
addBean, addBean, addEventListener, addManaged, contains, destroy, dump, dump, dump, dump, dump, dumpObject, dumpStdErr, getBean, getBeans, getBeans, getContainedBeans, isAuto, isManaged, isUnmanaged, manage, removeBean, removeBeans, removeEventListener, setBeans, setStopTimeout, unmanage, updateBean, updateBean, updateBeansMethods inherited from class org.eclipse.jetty.util.component.AbstractLifeCycle
addLifeCycleListener, getState, getState, getStopTimeout, isFailed, isRunning, isStarted, isStarting, isStopped, isStopping, removeLifeCycleListener, start, stop, toStringMethods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, wait, wait, waitMethods inherited from interface org.eclipse.jetty.util.component.Dumpable.DumpableContainer
isDumpableMethods inherited from interface org.eclipse.jetty.util.component.LifeCycle
addLifeCycleListener, isFailed, isRunning, isStarted, isStarting, isStopped, isStopping, removeLifeCycleListener, start, stop
-
Constructor Details
-
CachingSessionDataStore
Deprecated.- Parameters:
cache- the front cache to usestore- the actual store for the the session data
-
-
Method Details
-
getSessionStore
Deprecated.- Returns:
- the delegate session store
-
getSessionDataMap
Deprecated.- Returns:
- the fronting cache for session data
-
load
Deprecated.Description copied from interface:SessionDataMapRead in session data.- Specified by:
loadin interfaceSessionDataMap- Parameters:
id- identity of session to load- Returns:
- the SessionData matching the id
- Throws:
Exception- if unable to load session data- See Also:
-
delete
Deprecated.Description copied from interface:SessionDataMapDelete session data- Specified by:
deletein interfaceSessionDataMap- Parameters:
id- identity of session to delete- Returns:
- true if the session was deleted
- Throws:
Exception- if unable to delete session data- See Also:
-
getExpired
Deprecated.Description copied from interface:SessionDataStoreCalled periodically, this method should search the data store for sessions that have been expired for a 'reasonable' amount of time.- Specified by:
getExpiredin interfaceSessionDataStore- Parameters:
candidates- if provided, these are keys of sessions that the SessionDataStore thinks has expired and should be verified by the SessionDataStore- Returns:
- set of session ids
- See Also:
-
store
Deprecated.Description copied from interface:SessionDataMapStore the session data.- Specified by:
storein interfaceSessionDataMap- Parameters:
id- identity of session to storedata- info of session to store- Throws:
Exception- if unable to write session data- See Also:
-
isPassivating
public boolean isPassivating()Deprecated.Description copied from interface:SessionDataStoreTrue if this type of datastore will passivate session objects- Specified by:
isPassivatingin interfaceSessionDataStore- Returns:
- true if this store can passivate sessions, false otherwise
- See Also:
-
exists
Deprecated.Description copied from interface:SessionDataStoreTest if data exists for a given session id.- Specified by:
existsin interfaceSessionDataStore- Parameters:
id- Identity of session whose existence should be checked- Returns:
- true if valid, non-expired session exists
- Throws:
Exception- if problem checking existence with persistence layer- See Also:
-
initialize
Deprecated.Description copied from interface:SessionDataMapInitialize this data map for the given context. A SessionDataMap can only be used by one context(/session manager).- Specified by:
initializein interfaceSessionDataMap- Parameters:
context- context associated- Throws:
Exception- if unable to initialize the- See Also:
-
newSessionData
public SessionData newSessionData(String id, long created, long accessed, long lastAccessed, long maxInactiveMs) Deprecated.Description copied from interface:SessionDataStoreCreate a new SessionData- Specified by:
newSessionDatain interfaceSessionDataStore- Parameters:
id- the idcreated- the timestamp when createdaccessed- the timestamp when accessedlastAccessed- the timestamp when last accessedmaxInactiveMs- the max inactive time in milliseconds- Returns:
- a new SessionData object
- See Also:
-