Skip to content
Merged
Changes from 4 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion framework/caching/CRedisCache.php
Original file line number Diff line number Diff line change
Expand Up @@ -204,7 +204,10 @@ private function byteLength($str)
*/
protected function getValue($key)
{
return $this->executeCommand('GET',array($key));
$value=$this->executeCommand('GET',array($key));
if ($value===null)
return false;
return $value;
}

/**
Expand Down