Development

Changeset 8668

You must first sign up to be able to contribute.

Changeset 8668

Show
Ignore:
Timestamp:
04/29/08 08:42:16 (6 months ago)
Author:
FabianLange
Message:

added sfMySQLiSessionStorage to documentation

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • doc/branches/1.1/book/06-Inside-the-Controller-Layer.txt

    r8340 r8668  
    611611The `database` setting defines the database connection to be used. Symfony will then use `databases.yml` (see Chapter 8) to determine the connection settings (host, database name, user, and password) for this connection. 
    612612 
    613 The available session storage classes are `sfMySQLSessionStorage`, `sfPostgreSQLSessionStorage`, and `sfPDOSessionStorage`; the latter is preferred. To disable session storage completely, you can use the `sfNoStorage` class. 
     613The available session storage classes are `sfMySQLSessionStorage`, `sfMySQLiSessionStorage`, `sfPostgreSQLSessionStorage`, and `sfPDOSessionStorage`; the latter is preferred. To disable session storage completely, you can use the `sfNoStorage` class. 
    614614 
    615615Session expiration occurs automatically after 30 minutes. This default setting and can be modified for each environment in the same `factories.yml` configuration file, but this time in the `user` factory, as shown in Listing 6-21.