您当前的位置: 首页 > 慢生活 > 程序人生 网站首页程序人生
Redis Echo 命令
发布时间:2021-11-11 22:18:33编辑:雪饮阅读()
Redis Echo 命令用于打印给定的字符串。
返回值
返回字符串本身。
实例:
127.0.0.1:6379> echo message
"message"
127.0.0.1:6379> echo "hello world"
"hello world"
没有什么说的,和php的echo差不多。
关键字词:Redis,Echo