public class MongoSessionIdManager extends AbstractSessionIdManager
| Modifier and Type | Class and Description |
|---|---|
protected class |
MongoSessionIdManager.Purger
Purger
|
protected class |
MongoSessionIdManager.Scavenger
Scavenger
|
AbstractLifeCycle.AbstractLifeCycleListenerLifeCycle.Listener| Modifier and Type | Field and Description |
|---|---|
protected Server |
_server |
protected Set<String> |
_sessionsIds
the collection of session ids known to this manager
TODO consider if this ought to be concurrent or not
|
_random, _reseed, _weakRandom, _workerAttr, _workerName| Constructor and Description |
|---|
MongoSessionIdManager(Server server) |
MongoSessionIdManager(Server server,
com.mongodb.DBCollection sessions) |
| Modifier and Type | Method and Description |
|---|---|
void |
addSession(HttpSession session)
Add a session to the list of known sessions for a given ID.
|
protected void |
doStart() |
protected void |
doStop() |
void |
expireAll(String sessionId)
Expire this session for all contexts that are sharing the session
id.
|
long |
getPurgeInvalidAge() |
long |
getPurgeValidAge() |
com.mongodb.DBCollection |
getSessions() |
boolean |
idInUse(String sessionId)
Searches database to find if the session id known to mongo, and is it valid
|
void |
invalidateAll(String sessionId)
Remove the session id from the list of in-use sessions.
|
boolean |
isPurgeEnabled() |
protected void |
purge()
Purge is a process that cleans the mongodb cluster of old sessions that are no
longer valid.
|
protected void |
purgeFully()
Purge is a process that cleans the mongodb cluster of old sessions that are no
longer valid.
|
void |
removeSession(HttpSession session)
Remove session from the list of known sessions for a given ID.
|
void |
renewSessionId(String oldClusterId,
String oldNodeId,
HttpServletRequest request)
Change the existing session id.
|
protected void |
scavenge()
Scavenge is a process that periodically checks the tracked session
ids of this given instance of the session id manager to see if they
are past the point of expiration.
|
protected void |
scavengeFully()
ScavengeFully will expire all sessions.
|
void |
setPurge(boolean purge) |
void |
setPurgeDelay(long purgeDelay) |
void |
setPurgeInvalidAge(long purgeValidAge)
sets how old a session is to be persisted past the point it is
no longer valid
|
void |
setPurgeValidAge(long purgeValidAge)
sets how old a session is to be persist past the point it is
considered no longer viable and should be removed
NOTE: set this value to 0 to disable purging of valid sessions
|
void |
setScavengePeriod(long scavengePeriod)
The period in seconds between scavenge checks.
|
getClusterId, getNodeId, getRandom, getReseed, getWorkerName, initRandom, newSessionId, newSessionId, setRandom, setReseed, setWorkerNameaddLifeCycleListener, getState, getState, getStopTimeout, isFailed, isRunning, isStarted, isStarting, isStopped, isStopping, removeLifeCycleListener, setStopTimeout, start, stopclone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitaddLifeCycleListener, isFailed, isRunning, isStarted, isStarting, isStopped, isStopping, removeLifeCycleListener, start, stopprotected Server _server
public MongoSessionIdManager(Server server) throws UnknownHostException, com.mongodb.MongoException
UnknownHostExceptioncom.mongodb.MongoExceptionpublic MongoSessionIdManager(Server server, com.mongodb.DBCollection sessions)
protected void scavenge()
protected void scavengeFully()
protected void purge()
protected void purgeFully()
public com.mongodb.DBCollection getSessions()
public boolean isPurgeEnabled()
public void setPurge(boolean purge)
public void setScavengePeriod(long scavengePeriod)
scavengePeriod - public void setPurgeDelay(long purgeDelay)
public long getPurgeInvalidAge()
public void setPurgeInvalidAge(long purgeValidAge)
public long getPurgeValidAge()
public void setPurgeValidAge(long purgeValidAge)
protected void doStart()
throws Exception
doStart in class AbstractSessionIdManagerExceptionprotected void doStop()
throws Exception
doStop in class AbstractSessionIdManagerExceptionpublic boolean idInUse(String sessionId)
sessionId - The session ID without any cluster node extensionpublic void addSession(HttpSession session)
SessionIdManagersession - The sessionpublic void removeSession(HttpSession session)
SessionIdManagerpublic void invalidateAll(String sessionId)
sessionId - The session ID without any cluster node extensionSessionIdManager.invalidateAll(java.lang.String)public void expireAll(String sessionId)
sessionId - public void renewSessionId(String oldClusterId, String oldNodeId, HttpServletRequest request)
SessionIdManagerrenewSessionId in interface SessionIdManagerrenewSessionId in class AbstractSessionIdManagerCopyright © 1995-2015 Webtide. All Rights Reserved.