Download the PHP package diversen/simple-db-cache without Composer
On this page you can find all versions of the php package diversen/simple-db-cache. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Table of contents
Download diversen/simple-db-cache
More information about diversen/simple-db-cache
Files in diversen/simple-db-cache
Download diversen/simple-db-cache
More information about diversen/simple-db-cache
Files in diversen/simple-db-cache
Vendor diversen
Package simple-db-cache
Short Description Very simple key / value cache using a PDO database
License MIT
Homepage http://github.com/diversen/simple-db-cache
Package simple-db-cache
Short Description Very simple key / value cache using a PDO database
License MIT
Homepage http://github.com/diversen/simple-db-cache
Please rate this library. Is it a good library?
Informations about the package simple-db-cache
simple-db-cache
Very simple key / value cache using a PDO database
Database table
You will need a database table, e.g. sqlite:
CREATE TABLE `cache_system` (
`id` varchar(64) NOT NULL,
`data` text,
`unix_ts` int(10) DEFAULT NULL,
PRIMARY KEY (`id`)
)
Or MySQL:
CREATE TABLE `cache_system` (
`id` varchar(64) NOT NULL,
`data` mediumtext,
`unix_ts` int(10) DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `idx_system_cache` (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8
You can also use PostgreSQL and maybe other PDO supported databases.
Install
composer require diversen/simple-db-cache
Usage
test.php
License
MIT © Dennis Iversen
All versions of simple-db-cache with dependencies
PHP Build Version
Package Version
No informations.
The package diversen/simple-db-cache contains the following files
Loading the files please wait ....