InterviewSolution
Saved Bookmarks
| 1. |
How To Set Value In Redis? |
|
Answer» To SET the value in REDIS USE the following COMMAND: $redis->set("name", "Set string in redis"); To set the value in Redis use the following command: $redis->set("name", "Set string in redis"); |
|