lp / ObjCHiredis

Hiredis with Objective-C Interface
162 stars 22 forks source link

Wildcard query #3

Closed Florian95 closed 12 years ago

Florian95 commented 12 years ago

Hello,

I have 3 keys with data : ONLINE:723290409 ONLINE:549705437 ONLINE:820927467

with the redis client I can get it with GET ONLINE:*

But its doesn't work with ObjCHiredis, i have a null object.

id data = [redisConnection command:@"GET ONLINE:"]; NSLog(@"GET ONLINE: : %@", data);

Regards,

Florian95 commented 12 years ago

Its with keys...

id data = [redisConnection command:@"KEYS ONLINE:*"];