Package com.cxy.redisclient.service

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


    Node findNode = new Node(5, 0, "zset", NodeType.SORTEDSET);
   
    NodeService service = new NodeService();
    List<NodeType> types = new ArrayList<NodeType>();
    types.add(NodeType.SORTEDSET);
    Node node = service.findNext(findNode, NodeType.ROOT, 5, 0, "", types, "*", true);
   
    System.out.println("server:" + node.getId()+"db:" + node.getDb()+node.getKey());
  }

}
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.