Impmented SAVE command

This commit is contained in:
Jonathan Leibiusky
2010-08-08 12:46:33 -03:00
parent 4a7697911d
commit 86f3cffe24
3 changed files with 20 additions and 0 deletions

View File

@@ -511,4 +511,8 @@ public class Client extends Connection {
args.addAll(params.getParams());
sendCommand("ZINTERSTORE", args.toArray(new String[args.size()]));
}
public void save() {
sendCommand("SAVE");
}
}