# redis-tool **Repository Path**: jason1210/redis-tool ## Basic Information - **Project Name**: redis-tool - **Description**: No description available - **Primary Language**: Java - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2017-04-28 - **Last Updated**: 2020-12-19 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README ### redis-tool ### sample ``` RedisConnection conn = new RedisConnection.Builder("115.159.193.39", 6379).withPassWord("tSCf9413^3$913") .build(); RedisClient client = RedisClient.instance(conn); Person p = new Person(); p.setAge(12); p.setName("xb"); p.setDate(new Date()); client.set("p1", p); //get Person p2 = (Person) client.get("p1"); Assert.assertEquals(p2.getName(),"xb"); ```