Documentation

LeanRedis.Client.Connection

Send PING and decode the optional message payload returned by Redis.

Example:

let pong ← client.ping
let echoed ← client.ping (some "hello")
Equations
Instances For

    Send AUTH using the provided credentials.

    Example:

    let _ ← client.auth { password := "secret" }
    
    Equations
    • One or more equations did not get rendered due to their size.
    Instances For

      Send SELECT and update the tracked selected database on success.

      Example:

      let _ ← client.select 2
      
      Equations
      • One or more equations did not get rendered due to their size.
      Instances For