SINTER key [key ...] */
| 1003 | |
| 1004 | /* SINTER key [key ...] */ |
| 1005 | void sinterCommand(client *c) { |
| 1006 | sinterGenericCommand(c,c->argv+1,c->argc-1,NULL); |
| 1007 | } |
| 1008 | |
| 1009 | /* SINTERSTORE destination key [key ...] */ |
| 1010 | void sinterstoreCommand(client *c) { |
nothing calls this directly
no test coverage detected