Provides a database level storage system for the cache controller. This class requires a table with the following schema: CREATE TABLE `dataCache` ( `cacheId` varchar(255) NOT NULL, `data` mediumtext NOT NULL, `createDate` datetime NOT NULL,... More »
Posted in Cache on 19 Nov 2009 @ 20:30
This class requires an SQLite database file with a table with the following schema: CREATE TABLE `dataCache` ( `cacheId` varchar(255) NOT NULL, `data` mediumtext NOT NULL, `createDate` datetime NOT NULL, `updateDate` datetime NOT NULL, `lif... More »
Posted in Cache on 19 Nov 2009 @ 20:30
This class requires a table with the following schema: CREATE TABLE `dataCache` ( `cacheId` varchar(255) NOT NULL, `data` mediumtext NOT NULL, `createDate` datetime NOT NULL, `updateDate` datetime NOT NULL, `lifetime` int(10) NOT NULL defau... More »
Posted in Cache on 19 Nov 2009 @ 20:30