Class Horde_Cache_Storage_Sql
This class provides cache storage in a SQL databsae.
The table structure for the cache is as follows:
CREATE TABLE horde_cache (
cache_id VARCHAR(32) NOT NULL,
cache_timestamp BIGINT NOT NULL,
cache_data LONGBLOB,
(Or on PostgreSQL:)
cache_data TEXT,
(Or on some other DBMS systems:)
cache_data IMAGE,
PRIMARY KEY (cache_id)
);
Copyright 2007-2012 Horde LLC (http://www.horde.org/)
See the enclosed file COPYING for license information (LGPL). If you did not receive this file, see http://www.horde.org/licenses/lgpl21.
- Horde_Cache_Storage_Base
-
Horde_Cache_Storage_Sql
Package: Cache
Category: Horde
License: LGPL 2.1
Author: Ben Klang ben@alkaloid.net
Author: Michael Slusarz slusarz@horde.org
Located at Horde/Cache/Storage/Sql.php
Category: Horde
License: LGPL 2.1
Author: Ben Klang ben@alkaloid.net
Author: Michael Slusarz slusarz@horde.org
Located at Horde/Cache/Storage/Sql.php
public
|
|
public
|
|
public
mixed
|
|
public
|
|
public
boolean
|
|
public
boolean
|
|
public
|
setLogger()
|