Saved Bookmarks
| 1. |
How To Get Array Data From Redis? |
|
Answer» To get the array data from REDIS use the following command : $list = $redis->lrange("tutorials", 0 ,5); To get the array data from Redis use the following command : $list = $redis->lrange("tutorials", 0 ,5); |
|