JSessionStorageEaccelerator: Difference between revisions
From Joomla! Documentation
m →User contributed notes: moving preparation |
m moving preparation |
||
| Line 14: | Line 14: | ||
|- | |- | ||
|public | |public | ||
|[[JSessionStorageEaccelerator::close | |[[API17:JSessionStorageEaccelerator::close|close]] | ||
|Close the SessionHandler backend. | |Close the SessionHandler backend. | ||
|- | |- | ||
|public | |public | ||
|[[JSessionStorageEaccelerator::destroy | |[[API17:JSessionStorageEaccelerator::destroy|destroy]] | ||
|Destroy the data for a particular session identifier in the SessionHandler backend. | |Destroy the data for a particular session identifier in the SessionHandler backend. | ||
|- | |- | ||
|public | |public | ||
|[[JSessionStorageEaccelerator::gc | |[[API17:JSessionStorageEaccelerator::gc|gc]] | ||
|Garbage collect stale sessions from the SessionHandler backend. | |Garbage collect stale sessions from the SessionHandler backend. | ||
|- | |- | ||
|public | |public | ||
|[[JSessionStorageEaccelerator::open | |[[API17:JSessionStorageEaccelerator::open|open]] | ||
|Open the SessionHandler backend. | |Open the SessionHandler backend. | ||
|- | |- | ||
|public | |public | ||
|[[JSessionStorageEaccelerator::read | |[[API17:JSessionStorageEaccelerator::read|read]] | ||
|Read the data for a particular session identifier from the SessionHandler backend. | |Read the data for a particular session identifier from the SessionHandler backend. | ||
|- | |- | ||
|public | |public | ||
|[[JSessionStorageEaccelerator::write | |[[API17:JSessionStorageEaccelerator::write|write]] | ||
|Write session data to the SessionHandler backend. | |Write session data to the SessionHandler backend. | ||
|- | |- | ||
|public static | |public static | ||
|[[JSessionStorageEaccelerator::test | |[[API17:JSessionStorageEaccelerator::test|test]] | ||
|Test to see if the SessionHandler is available. | |Test to see if the SessionHandler is available. | ||
|- | |- | ||
|protected | |protected | ||
|[[JSessionStorageEaccelerator::__construct | |[[API17:JSessionStorageEaccelerator::__construct|__construct]] | ||
|Constructor. | |Constructor. | ||
|- | |- | ||
|} | |} | ||
* '''Defined in''' libraries/joomla/session/storage/eaccelerator.php | * '''Defined in''' libraries/joomla/session/storage/eaccelerator.php | ||
* '''Extends''' [[JSessionStorage | * '''Extends''' [[API17:JSessionStorage|JSessionStorage]] | ||
===Importing=== | ===Importing=== | ||
<source lang="php">jimport( 'joomla.session.storage.eaccelerator' );</source> | <source lang="php">jimport( 'joomla.session.storage.eaccelerator' );</source> | ||
===See also=== | ===See also=== | ||
* {{JVer|11.1}} '''JSessionStorageEaccelerator source code''' on [[jplatform:session/storage/eaccelerator.php|BitBucket]] | * {{JVer|11.1}} '''JSessionStorageEaccelerator source code''' on [[jplatform:session/storage/eaccelerator.php|BitBucket]] | ||
* {{JVer|11.1}} Subpackage [[Subpackage Session | * {{JVer|11.1}} Subpackage [[API17:Subpackage Session|Session]] | ||
* [[JSessionStorageEaccelerator|Other versions of JSessionStorageEaccelerator]] | * [[API17:JSessionStorageEaccelerator|Other versions of JSessionStorageEaccelerator]] | ||
{{SeeAlso:JSessionStorageEaccelerator}} | {{SeeAlso:JSessionStorageEaccelerator}} | ||
<span class="editsection" style="font-size:76%;"> | <span class="editsection" style="font-size:76%;"> | ||
Revision as of 02:30, 12 May 2013
JSessionStorageEaccelerator
Description
Template:Description:JSessionStorageEaccelerator [Edit Descripton]
Methods
| Visibility | Method name | Description |
|---|---|---|
| public | close | Close the SessionHandler backend. |
| public | destroy | Destroy the data for a particular session identifier in the SessionHandler backend. |
| public | gc | Garbage collect stale sessions from the SessionHandler backend. |
| public | open | Open the SessionHandler backend. |
| public | read | Read the data for a particular session identifier from the SessionHandler backend. |
| public | write | Write session data to the SessionHandler backend. |
| public static | test | Test to see if the SessionHandler is available. |
| protected | __construct | Constructor. |
- Defined in libraries/joomla/session/storage/eaccelerator.php
- Extends JSessionStorage
Importing
jimport( 'joomla.session.storage.eaccelerator' );
See also
JSessionStorageEaccelerator source code on BitBucket
Subpackage Session- Other versions of JSessionStorageEaccelerator
Template:SeeAlso:JSessionStorageEaccelerator [Edit See Also]
User contributed notes
<CodeExamplesForm />