Redis数据类型Strings.Lists常用操作指令 Strings常用操作指令 GET.SET相关操作 # GET 获取键值对 127.0.0.1:6379> get name (nil) # 设置失效时间的两种方式 # 设置键值对及过期时间 127.0.0.1:6379> setex name 10 enjoyitlife OK 127.0.0.1:6379> get name "enjoyitlife" # 等待10s后再次获取 127.0.0.1:6379…
https://maker.pro/linux/tutorial/basic-linux-commands-for-beginners ## 打开终端 ## **Ctrl+Alt+T** ## ls ```C - Use the "ls" command to know what files are in the directory you are in. You can see all the hidden files by using the command "ls -a…