rediska icon indicating copy to clipboard operation
rediska copied to clipboard

No longer maintained. Full-featured PHP client for key-value database Redis

Results 39 rediska issues
Sort by recently updated
recently updated
newest added

The session must return an string, with `(string)` casting this function returns an empty string instead of null. More information in: http://php.net/manual/en/function.session-start.php#120589.

Is there an way to test the connection in the SaveHandler or at least catch an conncection error

Make Rediska more flexible for changes and overriding

Now we have class that we could use for connection to redis via Unix Socket. Its useful when we have local instance of redis (could be slave) for fast data...

The Rediska_Serializer_Adapter_Json::unserialize method is returning the same value that is being passed in to be unserialized. Please see below: Lines 88-97 ``` PHP public function unserialize($value) { $decodedValue = json_decode($value);...

bugs

It always retrieving json decoded using `StdClass`-es, even if options says it should be associative arrays (and it should be by default). [Line 90](https://github.com/Shumkov/Rediska/blob/74242a3/library/Rediska/Serializer/Adapter/Json.php#L90) should be changed from ``` php...

this is because in the function Rediska_Zend_Cache_Backend_Redis::_getTransactionByKey access non existing element (if(!$this->_transaction[$connection->getAlias()]) )

Issue #74: unsubscribe error fix

Добавлена совместимость с php 5.5. (Для возврата функцией json_decode массива, а не объекта требуется второй параметр установленный в true) Исправлено возвращаемое функцией unserialize значение. Основания: В php 5.5 при выполнении...