[ Index ]

PHP Cross Reference of phpBB-3.2.11-deutsch

title

Body

[close]

/vendor/symfony/http-foundation/Session/Storage/Handler/ -> MongoDbSessionHandler.php (summary)

(no description)

File Size: 227 lines (7 kb)
Included or required:0 times
Referenced: 0 times
Includes or requires: 0 files

Defines 1 class

MongoDbSessionHandler:: (10 methods):
  __construct()
  open()
  close()
  destroy()
  gc()
  write()
  read()
  getCollection()
  getMongo()
  createDateTime()


Class: MongoDbSessionHandler  - X-Ref


__construct($mongo, array $options)   X-Ref
Constructor.

List of available options:
* database: The name of the database [required]
* collection: The name of the collection [required]
* id_field: The field name for storing the session id [default: _id]
* data_field: The field name for storing the session data [default: data]
* time_field: The field name for storing the timestamp [default: time]
* expiry_field: The field name for storing the expiry-timestamp [default: expires_at]

It is strongly recommended to put an index on the `expiry_field` for
garbage-collection. Alternatively it's possible to automatically expire
the sessions in the database as described below:

A TTL collections can be used on MongoDB 2.2+ to cleanup expired sessions
automatically. Such an index can for example look like this:

db.<session-collection>.ensureIndex(
{ "<expiry-field>": 1 },
{ "expireAfterSeconds": 0 }
)

More details on: http://docs.mongodb.org/manual/tutorial/expire-data/

If you use such an index, you can drop `gc_probability` to 0 since
no garbage-collection is required.

param: \Mongo|\MongoClient|\MongoDB\Client $mongo   A MongoDB\Client, MongoClient or Mongo instance
param: array                               $options An associative array of field options

open($savePath, $sessionName)   X-Ref
{@inheritdoc}


close()   X-Ref
{@inheritdoc}


destroy($sessionId)   X-Ref
{@inheritdoc}


gc($maxlifetime)   X-Ref
{@inheritdoc}


write($sessionId, $data)   X-Ref
{@inheritdoc}


read($sessionId)   X-Ref
{@inheritdoc}


getCollection()   X-Ref
Return a "MongoCollection" instance.

return: \MongoCollection

getMongo()   X-Ref
Return a Mongo instance.

return: \Mongo|\MongoClient|\MongoDB\Client

createDateTime($seconds = null)   X-Ref
Create a date object using the class appropriate for the current mongo connection.

Return an instance of a MongoDate or \MongoDB\BSON\UTCDateTime

param: int $seconds An integer representing UTC seconds since Jan 1 1970.  Defaults to now.
return: \MongoDate|\MongoDB\BSON\UTCDateTime



Generated: Wed Nov 11 20:33:01 2020 Cross-referenced by PHPXref 0.7.1