davemoki

Results 2 comments of davemoki

Less-hacky fix until a "real" fix gets put in place: (this is a git diff for anyone who wants to implement) [code] @@ -242,13 +242,25 @@ class Redis { $value_length...

slightly more elegant version... ``` private function _read_line( $length ) { $data = ''; while($length > 0) { $buffer = fread($this->_connection, $length); $length -= strlen($buffer); $data .= $buffer; } return...