2017 © Pedro Peláez
 

kohana-module kohana-rediscache

Very simple phpredis cache module for kohana3.3

image

bkhrupa/kohana-rediscache

Very simple phpredis cache module for kohana3.3

  • Wednesday, February 25, 2015
  • by bkhrupa
  • Repository
  • 3 Watchers
  • 5 Stars
  • 73,067 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 4 Forks
  • 0 Open issues
  • 6 Versions
  • 8 % Grown

The README.md

rediscache-kohana3.3

Very simple cache module phpredis for kohana3.3 :) Require Kohana Cache module, (*1)

Redis client - phpredis (https://github.com/nicolasff/phpredis), (*2)

Original module - (https://github.com/infarmer/phpredis-kohana3.3), (*3)

Example

Enable module bootstrap.php, (*4)

Kohana::modules(array(
    ...
    'cache' => MODPATH.'cache',
    'rediscache' => MODPATH.'rediscache',
    ...
));

Config. Add to Kohana cache config redis driver config/cache.php, (*5)

...
'redis' => array(
    'driver'             => 'redis',
    'port'               => 6379,
    'host'               => 'localhost',
    'db_num'             => 0,
    'igbinary_serialize' => false,
    'password'           => '',
),
...

If redis by default cache driver needed bootstrap.php, (*6)

// default cache driver
Cache::$default = 'redis';

Usage, (*7)

$redis_cache = Cache::instance('redis');
$redis_cache->set('test_cache', array('foo', 'bar'), 10);
$redis_cache->get('test_cache');

The Versions

25/02 2015

dev-3.3/develop

dev-3.3/develop https://github.com/bkhrupa/kohana-rediscache

Very simple phpredis cache module for kohana3.3

  Sources   Download

MIT

The Requires

 

cache redis module kohana

25/02 2015

dev-3.3/master

dev-3.3/master https://github.com/bkhrupa/kohana-rediscache

Very simple phpredis cache module for kohana3.3

  Sources   Download

MIT

The Requires

 

cache redis module kohana

25/02 2015

1.2.0

1.2.0.0 https://github.com/bkhrupa/kohana-rediscache

Very simple phpredis cache module for kohana3.3

  Sources   Download

MIT

The Requires

 

cache redis module kohana

23/02 2015

1.1.0

1.1.0.0 https://github.com/bkhrupa/kohana-rediscache

Very simple phpredis cache module for kohana3.3

  Sources   Download

MIT

The Requires

 

cache redis module kohana

22/02 2015

1.0.1

1.0.1.0 https://github.com/bkhrupa/kohana-rediscache

Very simple phpredis cache module for kohana3.3

  Sources   Download

MIT

The Requires

 

cache redis module kohana

21/02 2015

1.0.0

1.0.0.0 https://github.com/bkhrupa/kohana-rediscache

Very simple phpredis cache module for kohana3.3

  Sources   Download

MIT

The Requires

 

cache redis module kohana