https://github.com/gilbitron/hoard
PHP caching done right
https://github.com/gilbitron/hoard
Last synced: over 1 year ago
JSON representation
PHP caching done right
- Host: GitHub
- URL: https://github.com/gilbitron/hoard
- Owner: gilbitron
- License: mit
- Created: 2015-01-07T11:35:29.000Z (over 11 years ago)
- Default Branch: master
- Last Pushed: 2015-01-08T09:30:25.000Z (over 11 years ago)
- Last Synced: 2025-01-29T03:51:41.046Z (over 1 year ago)
- Language: PHP
- Size: 246 KB
- Stars: 3
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Hoard
[](https://travis-ci.org/gilbitron/Hoard)
Hoard is a simple, extensible PHP caching library.
## Install
Install via [composer](https://getcomposer.org):
```javascript
{
"require": {
"gilbitron/hoard": "~0.1.0"
}
}
```
Run `composer install` then use as normal:
```php
require 'vendor/autoload.php';
$cache = new Hoard\Hoard();
```
## API
Hoard uses the conecpt of "drawers" (as in a chest of drawers) as drivers for caching.
```php
$cache = new Hoard\Hoard($drawer = 'file', $options = [], $args = []);
```
Possible drawers (more to come):
* `file`
`$options` is an array of options passed to the chosen drawer. See [Drawers](#drawers) section below.
`$args`:
* `encrypt_keys` - Use encrypted keys (default: `true`)
* `encryption_function` - Function to use for encrypting keys `md5`/`sha1` (default: `md5`)
---
Determine if an item exists in the cache
```php
$cache->has($key);
```
---
Retrieve an item from the cache by key
```php
$cache->get($key, $default = null);
```
---
Retrieve an item from the cache and delete it
```php
$cache->pull($key, $default = null);
```
---
Store an item in the cache. `$minutes` can be an int or DateTime
```php
$cache->put($key, $value, $minutes);
```
---
Store an item in the cache if the key does not exist. `$minutes` can be an int or DateTime
```php
$cache->add($key, $value, $minutes);
```
---
Store an item in the cache indefinitely
```php
$cache->forever($key, $value);
```
---
Remove an item from the cache
```php
$cache->forget($key);
```
---
Remove all items from the cache
```php
$cache->flush();
```
## Drawers
#### `file`
Basic FileSystem caching.
Options:
* `cache_dir` - Path to cache directory. Uses the system tmp dir if none provided.
## Credits
Hoard was created by [Gilbert Pellegrom](http://gilbert.pellegrom.me) from [Dev7studios](http://dev7studios.com). Released under the MIT license.