Package com.cxy.redisclient.service

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


 
  public void testFindKeys() {
    NodeService service = new NodeService();
    List<NodeType> types = new ArrayList<NodeType>();
    types.add(NodeType.SORTEDSET);
    Set<Node> nodes = service.find(NodeType.ROOT, 5, 0, "", types, "*", true);
   
    for(Node node:nodes) {
      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.