php-feather / cache
Feather Cache
dev-master
2021-06-19 23:29 UTC
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: 2024-12-20 06:56:52 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)
);