June 2017
Intermediate to advanced
536 pages
9h 49m
English
Removing records from Redis is as easy as calling the Redis client del() method and passing it the key that we want to delete:
<?phptry { $client = new Redis(); $client->connect('localhost', 6379); $client->del('user');} catch (RedisException $e) { echo $e->getMessage(), PHP_EOL;}
Read now
Unlock full access