123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303 |
- <?php
- namespace ZN\Caching\Drivers;
- use ZN\Caching\CacheInterface;
- class RedisDriver implements CacheInterface
- {
- //----------------------------------------------------------------------------------------------------
- //
- // Yazar : Ozan UYKUN <ozanbote@windowslive.com> | <ozanbote@gmail.com>
- // Site : www.zntr.net
- // Lisans : The MIT License
- // Telif Hakkı: Copyright (c) 2012-2016, zntr.net
- //
- //----------------------------------------------------------------------------------------------------
-
- /* Redis Değişkeni
- *
- * Redis sınıfı bilgisini
- * barındırmak için oluşturulmuştur.
- *
- */
- protected $redis;
-
- /* Serialized Değişkeni
- *
- * Ön bellekleme bilgilerini
- * barındırmak için oluşturulmuştur.
- *
- */
- protected $serialized = [];
-
- public function __construct()
- {
- if( $this->isSupported() === false )
- {
- die(getErrorMessage('Cache', 'unsupported', 'Redis'));
- }
- }
-
- /******************************************************************************************
- * CONNECT *
- *******************************************************************************************
- | Genel Kullanım: Nesne tanımlaması ve ön bellek ayarları çalıştırılıyor. |
- | |
- ******************************************************************************************/
- public function connect($settings = [])
- {
- $config = \Config::get('Cache', 'driverSettings');
-
- $config = ! empty($settings)
- ? $settings
- : $config['redis'];
-
- $this->redis = new \Redis();
-
- try
- {
- if( $config['socketType'] === 'unix' )
- {
- $success = $this->redis->connect($config['socket']);
- }
- else
- {
- $success = $this->redis->connect($config['host'], $config['port'], $config['timeout']);
- }
-
- if ( empty($success) )
- {
- die(getErrorMessage('Cache', 'connectionRefused', 'Connection'));
- }
- }
- catch( RedisException $e )
- {
- die(getErrorMessage('Cache', 'connectionRefused', $e->getMessage()));
- }
-
- if( isset($config['password']) )
- {
- if ( ! $this->redis->auth($config['password']))
- {
- die(getErrorMessage('Cache', 'authenticationFailed'));
- }
- }
- $serialized = $this->redis->sMembers('ZNRedisSerialized');
-
- if ( ! empty($serialized) )
- {
- $this->serialized = array_flip($serialized);
- }
-
- return true;
- }
-
- /******************************************************************************************
- * SELECT *
- *******************************************************************************************
- | Genel Kullanım: Önbelleğe alınmış nesneyi çağırmak için kullanılır. |
- | |
- | Parametreler: Tek parametresi vardır. |
- | 1. string var @key => Nesne anahtarı. |
- | |
- | Örnek Kullanım: ->get('nesne'); |
- | |
- ******************************************************************************************/
- public function select($key = '')
- {
- $value = $this->redis->get($key);
-
- if( $value !== false && isset($this->serialized[$key]) )
- {
- return unserialize($value);
- }
-
- return $value;
- }
-
- /******************************************************************************************
- * INSERT *
- *******************************************************************************************
- | Genel Kullanım: Ön bellekte değişken saklamak için kullanılır. |
- | |
- | Parametreler: 4 parametresi vardır. |
- | 1. string var @key => Nesne anahtarı. |
- | 2. variable var @data => Nesne. |
- | 3. numeric var @time => Saklanacağı zaman. |
- | 4. mixed var @compressed => Sıkıştırma. |
- | |
- | Örnek Kullanım: ->get('nesne'); |
- | |
- ******************************************************************************************/
- public function insert($key = '', $data = '', $time = 60, $compressed = false)
- {
- if( is_array($data) OR is_object($data) )
- {
- if( ! $this->redis->sIsMember('ZNRedisSerialized', $key) && ! $this->redis->sAdd('ZNRedisSerialized', $key) )
- {
- return false;
- }
-
- if( ! isset($this->serialized[$key]) )
- {
- $this->serialized[$key] = true;
- }
-
- $data = serialize($data);
- }
- elseif( isset($this->serialized[$key]) )
- {
- $this->serialized[$key] = NULL;
-
- $this->redis->sRemove('ZNRedisSerialized', $key);
- }
- return $this->redis->set($key, $data, $time);
- }
-
- /******************************************************************************************
- * DELETE *
- *******************************************************************************************
- | Genel Kullanım: Ön bellekten nesneyi silmek için kullanılır. |
- | |
- | Parametreler: Tek parametresi vardır. |
- | 1. string var @key => Nesne anahtarı. |
- | |
- | Örnek Kullanım: ->delete('nesne'); |
- | |
- ******************************************************************************************/
- public function delete($key = '')
- {
- if( $this->redis->delete($key) !== 1 )
- {
- return false;
- }
-
- if( isset($this->serialized[$key]) )
- {
- $this->serialized[$key] = NULL;
-
- $this->redis->sRemove('ZNRedisSerialized', $key);
- }
-
- return true;
- }
-
- /******************************************************************************************
- * INCREMENT *
- *******************************************************************************************
- | Genel Kullanım: Nesnenin değerini artımak için kullanılır. |
- | |
- | Parametreler: 2 parametresi vardır. |
- | 1. string var @key => Nesne anahtarı. |
- | 2. numeric var @increment => Artırım miktarı. |
- | |
- | Örnek Kullanım: ->increment('nesne', 1); |
- | |
- ******************************************************************************************/
- public function increment($key = '', $increment = 1)
- {
- return $this->redis->incr($key, $increment);
- }
-
- /******************************************************************************************
- * DECREMENT *
- *******************************************************************************************
- | Genel Kullanım: Nesnenin değerini azaltmak için kullanılır. |
- | |
- | Parametreler: 2 parametresi vardır. |
- | 1. string var @key => Nesne anahtarı. |
- | 2. numeric var @decrement => Azaltım miktarı. |
- | |
- | Örnek Kullanım: ->decrement('nesne', 1); |
- | |
- ******************************************************************************************/
- public function decrement($key = '', $decrement = 1)
- {
- return $this->redis->decr($key, $decrement);
- }
-
- /******************************************************************************************
- * CLEAN *
- *******************************************************************************************
- | Genel Kullanım: Tüm önbelleği silmek için kullanılır. |
- | |
- ******************************************************************************************/
- public function clean()
- {
- return $this->redis->flushDB();
- }
-
- /******************************************************************************************
- * INFO *
- *******************************************************************************************
- | Genel Kullanım: Ön bellekleme hakkında bilgi edinmek için kullanılır. |
- | |
- | Parametreler: Tek parametresi vardır. |
- | 1. string var @type => Bilgi alınacak kullanıcı türü. |
- | |
- | Örnek Kullanım: ->info('user'); |
- | |
- ******************************************************************************************/
- public function info($type = NULL)
- {
- return $this->redis->info();
- }
-
- /******************************************************************************************
- * GET METADATA *
- *******************************************************************************************
- | Genel Kullanım: Ön bellekteki nesne hakkında bilgi almak için kullanılır. |
- | |
- | Parametreler: Tek parametresi vardır. |
- | 1. string var @key => Bilgi alınacak nesne. |
- | |
- | Örnek Kullanım: ->get_metadata('nesne'); |
- | |
- ******************************************************************************************/
- public function getMetaData($key = '')
- {
- $data = $this->select($key);
-
- if( $data !== false )
- {
- return array
- (
- 'expire' => time() + $this->redis->ttl($key),
- 'data' => $data
- );
- }
-
- return false;
- }
-
- /******************************************************************************************
- * IS SUPPORTED *
- *******************************************************************************************
- | Genel Kullanım: Sürücünün desteklenip desklenmediğini öğrenmek için kullanılır. |
- | |
- ******************************************************************************************/
- public function isSupported()
- {
- if( ! extension_loaded('redis') )
- {
- return \Errors::set('Cache', 'unsupported', 'Redis');
- }
-
- return $this->connect();
- }
-
- /******************************************************************************************
- * DESTRUCT *
- *******************************************************************************************
- | Genel Kullanım: Nesne tanımlaması kapatılıyor. |
- | |
- ******************************************************************************************/
- public function __destruct()
- {
- if( ! empty($this->redis) )
- {
- $this->redis->close();
- }
- }
- }
|