public void add(int id, int db, String key, List<String> values, boolean headTail, boolean exist, int ttl) {
AddList command = new AddList(id, db, key, values, headTail, exist);
command.execute();
if(ttl != -1){
Expire command1 = new Expire(id, db, key, ttl);
command1.execute();
}
}