Package Data | |
---|---|
Maintainer Username: | jinguoxing |
Maintainer Contact: | 494728736@qq.com (jinguoxing) |
Package Create Date: | 2015-06-27 |
Package Last Update: | 2015-07-02 |
Language: | PHP |
License: | MIT |
Last Refreshed: | 2024-12-15 03:03:45 |
Package Statistics | |
---|---|
Total Downloads: | 352 |
Monthly Downloads: | 0 |
Daily Downloads: | 0 |
Total Stars: | 2 |
Total Watchers: | 4 |
Total Forks: | 1 |
Total Open Issues: | 2 |
PhpRedis The phpredis extension provides an API for communicating with the Redis key-value store. It is released under the PHP License, version 3.01. This code has been developed and maintained by Owlient from November 2009 to March 2011.
PHP 5.4+ Laravel 5.x
"require": {
"kingnet/laravel-phpredis":"dev-master"
}
Add the PhpRedisServiceProvider to config/app.php (comment out built-in RedisServiceProvider):
// Illuminate\Redis\RedisServiceProvider::class,
//phpredis provider
KingNet\PhpRedis\PhpRedisServiceProvider::class,
The default Facade alias conflicts with the Redis class provided by PhpRedis. To fix this, rename the alias in config/app.php:
'PhpRedis' => KingNet\PhpRedis\Facede::class,
Finally run composer update to update and install everything.
Just use php artisan vendor:publish and a phpredis.php file will be created in your config directory.
use PhpRedis;
class PhpredisController extends Controller
{
public function test()
{
PhpRedis::set('myname','kingnet');
dd(PhpRedis::get('myname'));
}
}
This is free software distributed under the terms of the MIT license.
Please report any issue you find in the issues page. Pull requests are welcome.