Package com.cxy.redisclient.integration.string

Examples of com.cxy.redisclient.integration.string.AddString


import com.cxy.redisclient.integration.string.ReadString;
import com.cxy.redisclient.integration.string.UpdateString;

public class NodeService {
  public void addString(int id, int db, String key, String value, int ttl) {
    AddString command = new AddString(id, db, key ,value);
    command.execute();
    expire(id, db, key, ttl);
  }
View Full Code Here

TOP

Related Classes of com.cxy.redisclient.integration.string.AddString

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.