File tree Expand file tree Collapse file tree 1 file changed +5
-6
lines changed Expand file tree Collapse file tree 1 file changed +5
-6
lines changed Original file line number Diff line number Diff line change 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
98use  crate :: Connection ; 
109use  crate :: Frame ; 
 
 
   
 
     
   
   
          
    
    
     
    
      
     
     
    You can’t perform that action at this time.
  
 
    
  
    
      
        
     
       
      
     
   
 
    
    
  
 
  
 
     
    
0 commit comments