Package com.cxy.redisclient.service

Examples of com.cxy.redisclient.service.NodeService.readString()


  public void testAddKey() throws IOException {
    NodeService service2 = new NodeService();
    service2.addString(1, 0, "key", "value", -1);
   
    String value = service2.readString(1, 0, "key");
    assertEquals(value, "value");
  }

  public void testDeleteKey() throws IOException {
    NodeService service2 = new NodeService();
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.