Package com.cxy.redisclient.integration.list

Examples of com.cxy.redisclient.integration.list.InsertList.execute()


    return command.getValues();
  }
 
  public void insert(int id, int db, String key, boolean beforeAfter, String pivot, String value){
    InsertList command = new InsertList(id, db, key, beforeAfter, pivot, value);
    command.execute();
  }
 
  public void setValue(int id, int db, String key, int index, String value) {
    SetValue command = new SetValue(id, db, key, index, value);
    command.execute();
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.