Package com.cxy.redisclient.domain

Examples of com.cxy.redisclient.domain.DataNode


      String[] ckey = nextKey.substring(length).split(ConfigFile.getSeparator());
      if (ckey.length == 1) {
        NodeType nodeType = getValueType(nextKey);
        long size = getSize(nextKey);
        boolean persist = isPersist(nextKey);
        DataNode node;
        if(!flat)
          node = new DataNode(id, db, ckey[0], nodeType, size, persist, order, orderBy);
        else
          node = new DataNode(id, db, nextKey, nodeType, size, persist, order, orderBy);
        keys.add(node);
      }
    }
  }
View Full Code Here

TOP

Related Classes of com.cxy.redisclient.domain.DataNode

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.