php-feather / cache
Feather Cache
Installs: 106
Dependents: 2
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
pkg:composer/php-feather/cache
Requires
- php: >=7.0
- php-feather/support: dev-main
- predis/predis: ^1.1
Requires (Dev)
- phpunit/phpunit: ^9.5
This package is auto-updated.
Last update: 2025-09-20 08:54:35 UTC
README
CACHE DB Table SCHEMA
CREATE TABLE cache (
id int primary key auto_increment,
cache_key varchar(255) unique not null,
cache_data mediumtext,
expire_at int unsigned not null,
created_at datetime not null default current_timestamp,
updated_at datetime not null default current_timestamp on update current_timestamp,
KEY cache_expire_at_dx (expire_at)
);