AddList command = new AddList(id, db, key, values, true, true);
command.execute();
}
public List<String> getPage(int id, int db, String key, int start, int end) {
ListListPage command = new ListListPage(id, db, key, start, end);
command.execute();
return command.getPage();
}