An open API service indexing awesome lists of open source software.

https://github.com/phore/phore-flash

Flash storage based on ip/user/session with drivers for redis and filesystem
https://github.com/phore/phore-flash

Last synced: 5 months ago
JSON representation

Flash storage based on ip/user/session with drivers for redis and filesystem

Awesome Lists containing this project

README

          

# Phore flash

## Install

```
composer requre phore/flash
```

## Basic usage

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

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

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