Package com.cxy.redisclient.integration.list

Examples of com.cxy.redisclient.integration.list.SetValue


    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

Related Classes of com.cxy.redisclient.integration.list.SetValue

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.