Rustis Versions Save

An asynchronous Redis client for Rust

0.13.3

6 days ago
  • fix does not allow SUBSCRIBE to be sent to server if already subscribed

0.13.2

1 week ago
  • use unbounded_send when sending pub/sub message from network handler

0.13.1

1 month ago

fix reconnection

  • commands sent during reconnection, with flag retry_on_error set to false (default behavior), are immediately ended in error.

0.13.0

1 month ago

Advanced reconnection strategy

0.12.11

1 month ago
  • fix subscribe multiple times to the same channel: when subscribing to the same channel on the same client, an error will be returned

0.12.10

1 month ago
  • fix a bad status pb in the NetworkHandler implementation

0.12.9

2 months ago
  • connection string prefixes:
    • redis-sentinel
    • rediss-sentinel
    • redis-cluster
    • rediss-cluster
  • Fix skip offset calculation in connection info manager (#62)
    • fix a bug related to cluster node redirection

0.12.8

5 months ago
  • fix infinite loop in cluster mode when loosing connection to a node

0.12.7

5 months ago
  • Better transaction support in cluster mode: if all the commands of a transaction are not executed on the same node, the transaction will fail cleanly. The test is done in Rustis, before actually sending the commands to the Redis cluster

0.12.6

5 months ago
  • fix Error reconnect in the master-replica model of Redis-Server with Redis Sentinel (#51)