Skip to content

Commit 96020cb

Browse files
committed
docs: update descriptions for the client lib
1 parent 1685a01 commit 96020cb

File tree

1 file changed

+5
-6
lines changed

1 file changed

+5
-6
lines changed

src/client.rs

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,9 @@
1-
//! Redis client CLI application. A simple command line interface to interact with a Redis server.
1+
//! Redis client implementation.
22
//!
3-
//! The clients default to RESP2 unless HELLO 3 is explicitly sent.
4-
//! It can operate in two modes: interactive and single command mode.
5-
//! In interactive mode, the user can send commands to the server and get the response. It starts an REPL loop.
6-
//! In single command mode, the user can send a single command to the server and get the response.
7-
//! Both modes are blocking and synchronous.
3+
//! The clients default to RESP2 unless HELLO 3 is explicitly sent to switch to RESP3.
4+
//! The client is a simple wrapper around the Connection struct.
5+
//! It provides simple APIs to send commands to the Redis server and get the response.
6+
//! The client is designed to be used in an async context, using the tokio runtime.
87
98
use crate::Connection;
109
use crate::Frame;

0 commit comments

Comments
 (0)