Skip to content

Latest commit

 

History

History
21 lines (13 loc) · 243 Bytes

README.md

File metadata and controls

21 lines (13 loc) · 243 Bytes

Phore flash

Install

composer requre phore/flash

Basic usage

$flash = new Flash("redis://redisHost");

$key = $flash->withQuickHash("some value")->withTTL(30);

$key->get()
$key->set("some value");
$key->del();