Package com.cxy.redisclient.integration.server

Examples of com.cxy.redisclient.integration.server.QueryServerProperties


  public int listDBs(Server server) throws IOException {
    return listDBs(server.getId());
  }
 
  public Map<String, String[]> listInfo(int id) {
    QueryServerProperties command = new QueryServerProperties(id);
    command.execute();
    return command.getServerInfo();
  }
View Full Code Here

TOP

Related Classes of com.cxy.redisclient.integration.server.QueryServerProperties

Copyright © 2018 www.massapicom. 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.