9951 explained code solutions for 126 technologies


redisSample Redis usage


redis-cli SET test 123
redis-cli GET testctrl + c
redis-cli

executes Redis command in bash

SET

sets value by specified key

test

key to set (and the get) value

123

value to set

GET

gets value by key