예제 #1
0
void msetCommand(redisClient *c) {
    msetGenericCommand(c,0);
}
예제 #2
0
void msetnxCommand(redisClient *c) {
    msetGenericCommand(c,1);
}
예제 #3
0
파일: t_string.c 프로젝트: hylaz/redis
void msetCommand(client *c) {
    msetGenericCommand(c,0);
}