zoukankan      html  css  js  c++  java
  • redis transaction和connection命令操作

    /*********** redis transaction命令操作 **********/
    1.
    DISCARD -
    summary: Discard all commands issued after MULTI
    since: 2.0.0


    EXEC -
    summary: Execute all commands issued after MULTI
    since: 1.2.0


    MULTI -
    summary: Mark the start of a transaction block
    since: 1.2.0


    UNWATCH -
    summary: Forget about all watched keys
    since: 2.2.0


    WATCH key [key ...]
    summary: Watch the given keys to determine execution of the MULTI/EXEC block
    since: 2.2.0


    /************** redis connection命令操作 ***********/

    1.验证服务器密码
    AUTH password
    summary: Authenticate to the server
    since: 1.0.0


    2.显示指定的message信息
    ECHO message
    summary: Echo the given string
    since: 1.0.0


    3.判断服务是否ping通
    PING -
    summary: Ping the server
    since: 1.0.0
    4.关闭连接并退出
    QUIT -
    summary: Close the connection
    since: 1.0.0


    5.选择redis下的数据库
    SELECT index
    summary: Change the selected database for the current connection
    since: 1.0.0



  • 相关阅读:
    vim 末行模式简单练习
    末行模式
    vim 简单用法
    sed用法
    在原有的基础之上,启用NAT模型
    启用隔离模型
    一个前端的自我修养
    如何提升我的HTML&CSS技术,编写有结构的代码
    MVC缓存
    MVC分页
  • 原文地址:https://www.cnblogs.com/JZZ1026/p/4417309.html
Copyright © 2011-2022 走看看