Hi I am using Laravel with Redis .When I am trying to access a key by get method then get following error "WRONGTYPE Operation against a key holding the wrong kind of value"
I am using following code to access the key value -
i use this code for get data from redis
$values = "l_messages";
$value = $redis->HGETALL($values);
print($value);