- save(NoSqlSession, Object, boolean) - Method in class org.eclipse.jetty.nosql.mongodb.MongoSessionManager
-
- save(boolean) - Method in class org.eclipse.jetty.nosql.NoSqlSession
-
- save(NoSqlSession, Object, boolean) - Method in class org.eclipse.jetty.nosql.NoSqlSessionManager
-
- scavenge() - Method in class org.eclipse.jetty.nosql.mongodb.MongoSessionIdManager
-
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.
- scavenge() - Method in class org.eclipse.jetty.nosql.mongodb.MongoSessionManager
-
- scavengeFully() - Method in class org.eclipse.jetty.nosql.mongodb.MongoSessionIdManager
-
ScavengeFully 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.
- scavengeFully() - Method in class org.eclipse.jetty.nosql.mongodb.MongoSessionManager
-
- setIdlePeriod(int) - Method in class org.eclipse.jetty.nosql.NoSqlSessionManager
-
The Idle Period is the time in seconds before an in memory session is passivated.
- setInvalidateOnStop(boolean) - Method in class org.eclipse.jetty.nosql.NoSqlSessionManager
-
Invalidate sessions when the session manager is stopped otherwise save them to the DB.
- setPurge(boolean) - Method in class org.eclipse.jetty.nosql.mongodb.MongoSessionIdManager
-
- setPurgeDelay(long) - Method in class org.eclipse.jetty.nosql.mongodb.MongoSessionIdManager
-
- setPurgeInvalidAge(long) - Method in class org.eclipse.jetty.nosql.mongodb.MongoSessionIdManager
-
sets how old a session is to be persisted past the point it is
no longer valid
- setPurgeValidAge(long) - Method in class org.eclipse.jetty.nosql.mongodb.MongoSessionIdManager
-
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
- setSaveAllAttributes(boolean) - Method in class org.eclipse.jetty.nosql.NoSqlSessionManager
-
Save all attributes of a session or only update the dirty attributes.
- setSavePeriod(int) - Method in class org.eclipse.jetty.nosql.NoSqlSessionManager
-
The Save Period is the time in seconds between saves of a dirty session to the DB.
- setScavengeDelay(long) - Method in class org.eclipse.jetty.nosql.mongodb.MongoSessionIdManager
-
sets the scavengeDelay
- setScavengePeriod(long) - Method in class org.eclipse.jetty.nosql.mongodb.MongoSessionIdManager
-
- setSessionIdManager(SessionIdManager) - Method in class org.eclipse.jetty.nosql.mongodb.MongoSessionManager
-
- setStalePeriod(int) - Method in class org.eclipse.jetty.nosql.NoSqlSessionManager
-
The State Period is the maximum time in seconds that an in memory session is allows to be stale:
If this period is exceeded, the DB will be checked to see if a more recent version is available.
If the state period is set to a value < 0, then no staleness check will be made.
If the state period is set to 0, then a staleness check is made whenever the active request count goes from 0 to 1.