Package | Description |
---|---|
com.caucho.quercus | |
com.caucho.quercus.env | |
com.caucho.quercus.lib.session |
Modifier and Type | Method and Description |
---|---|
SessionArrayValue |
QuercusContext.loadSession(Env env,
java.lang.String sessionId)
Loads the session from the backing.
|
Modifier and Type | Method and Description |
---|---|
void |
QuercusContext.saveSession(Env env,
SessionArrayValue session)
Saves the session to the backing.
|
Modifier and Type | Class and Description |
---|---|
class |
ResinSessionArrayValue
Represents the $_SESSION
|
Modifier and Type | Method and Description |
---|---|
SessionArrayValue |
Env.createSession(java.lang.String sessionId,
boolean create)
Create the session.
|
SessionArrayValue |
Env.getSession()
Returns the session.
|
Modifier and Type | Method and Description |
---|---|
void |
Env.setSession(SessionArrayValue session)
Sets the session.
|
Modifier and Type | Field and Description |
---|---|
protected java.util.Iterator<SessionArrayValue> |
QuercusSessionManager._sessionIter |
protected java.util.ArrayList<SessionArrayValue> |
QuercusSessionManager._sessionList |
protected LruCache<java.lang.String,SessionArrayValue> |
QuercusSessionManager._sessions |
Modifier and Type | Method and Description |
---|---|
protected SessionArrayValue |
QuercusSessionManager.create(Env env,
java.lang.String key,
long now)
Creates a session.
|
SessionArrayValue |
QuercusSessionManager.createSession(Env env,
java.lang.String oldId,
long now)
Create a new session.
|
protected SessionArrayValue |
QuercusSessionManager.createSessionValue(java.lang.String key,
long now,
long sessionTimeout)
Creates a new SessionArrayValue instance.
|
SessionArrayValue |
QuercusSessionManager.getSession(Env env,
java.lang.String key,
long now)
Returns a session from the session store, returning null if there's
no cached session.
|
Modifier and Type | Method and Description |
---|---|
protected boolean |
QuercusSessionManager.load(Env env,
SessionArrayValue session,
long now)
Loads the session from the backing store.
|
void |
QuercusSessionManager.saveSession(Env env,
SessionArrayValue session) |