Feather Cache

Installs: 106

Dependents: 2

Suggesters: 0

Security: 0

Stars: 0

Watchers: 1

Forks: 0

Open Issues: 0

pkg:composer/php-feather/cache

dev-master 2021-06-19 23:29 UTC

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)
);