# tio-redis-client **Repository Path**: javajianghu/tio-redis-client ## Basic Information - **Project Name**: tio-redis-client - **Description**: 基于t-io完成一个简单的redis 客户端 - **Primary Language**: Java - **License**: Apache-2.0 - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 5 - **Forks**: 5 - **Created**: 2020-09-15 - **Last Updated**: 2024-05-09 ## Categories & Tags **Categories**: cache-modules **Tags**: None ## README # tio-redis-client #### 介绍 基于t-io完成一个简单的redis 客户端 根据t-io官网某位大佬提供的代码实现 博客地址: https://www.tiocloud.com/137 #### 使用方式 直接运行top.javajianghu.tedis.TedisClient的main方法,然后在控制台输入redis命令。 例如: ``` select 1 set hello world get hello ``` top.javajianghu.tedis.RedisClient类是基于socket实现的redis客户端代码,摘于:https://zhuanlan.zhihu.com/p/461286461