June 2017
Intermediate to advanced
536 pages
9h 49m
English
Using the phpredis driver extension, we can connect to Redis from PHP using the Redis class, as follows:
<?php$client = new Redis();$client->connect('localhost', 6379);
This single-line expression will look for Redis on localhost under port 6379.
Read now
Unlock full access