February 2018
Intermediate to advanced
382 pages
11h 33m
English
To understand how to use the list data type, take the following steps:
127.0.0.1:6379> LPUSH favorite_restaurants "PF Chang's" "Olive Garden"(integer) 2
127.0.0.1:6379> LRANGE favorite_restaurants 0 -11) "Olive Garden"2) "PF Chang's"
127.0.0.1:6379> RPUSH favorite_restaurants "Outback Steakhouse" "Red Lobster"(integer) 4127.0.0.1:6379> LRANGE favorite_restaurants 0 -11) "Olive Garden"2) "PF Chang's"3) "Outback Steakhouse" ...
Read now
Unlock full access