No description
Find a file
xmonader 6a28bb1a82
Merge pull request #6 from ba0f3/patch-3
update for stricter type version for redisparser
2021-09-10 22:20:04 +02:00
docs Set theme jekyll-theme-cayman 2019-04-27 07:29:38 +02:00
src update for stricter type version for redisparser 2021-09-11 00:12:06 +07:00
tests update for stricter type version for redisparser 2021-09-11 00:12:06 +07:00
README.md Add connection pool 2021-09-10 02:02:33 +07:00
redisclient.nimble update for stricter type version for redisparser 2021-09-11 00:12:06 +07:00

redisclient

Provides sync and async clients to communicate with redis servers using nim-redisparser

Executing commands

Sync


  let con = open("localhost", 6379.Port)
  echo $con.execCommand("PING", @[])
  echo $con.execCommand("SET", @["auser", "avalue"])
  echo $con.execCommand("GET", @["auser"])
  echo $con.execCommand("SCAN", @["0"])

Async

  let con = await openAsync("localhost", 6379.Port)
  echo await con.execCommand("PING", @[])
  echo await con.execCommand("SET", @["auser", "avalue"])
  echo await con.execCommand("GET", @["auser"])
  echo await con.execCommand("SCAN", @["0"])
  echo await con.execCommand("SET", @["auser", "avalue"])
  echo await con.execCommand("GET", @["auser"])
  echo await con.execCommand("SCAN", @["0"])

  await con.enqueueCommand("PING", @[])
  await con.enqueueCommand("PING", @[])
  await con.enqueueCommand("PING", @[])
  echo await con.commitCommands()

Pipelining

You can use enqueueCommand and commitCommands to make use of redis pipelining

  con.enqueueCommand("PING", @[])
  con.enqueueCommand("PING", @[])
  con.enqueueCommand("PING", @[])

  echo $con.commitCommands()

Connection Pool

There is a simple connection pool included - which was a folk of zedeus's redpool

import redisclient, redisclient/connpool
proc main {.async.} =
    let pool = await newAsyncRedisPool(1)
    let conn = await pool.acquire()
    echo await conn.ping()
    pool.release(conn)

    pool.withAcquire(conn2):
      echo await conn2.ping()
    await pool.close()
waitFor main()

Roadmap