コード例 #1
0
ファイル: db.c プロジェクト: luxyer/redis-storage
void pttlCommand(redisClient *c) {
    ttlGenericCommand(c, 1);
}
コード例 #2
0
ファイル: db.c プロジェクト: slfs007/ZZ-Redis
void pttlCommand(client *c) {
    ttlGenericCommand(c, 1);
}
コード例 #3
0
ファイル: db.c プロジェクト: luxyer/redis-storage
void ttlCommand(redisClient *c) {
    ttlGenericCommand(c, 0);
}
コード例 #4
0
ファイル: db.c プロジェクト: slfs007/ZZ-Redis
void ttlCommand(client *c) {
    ttlGenericCommand(c, 0);
}