15:36:58 GMT hello 16:23:18 GMT Hi, in python redis, is it possible to do get "keyx*" 16:23:18 GMT ? 16:23:24 GMT e.g. use wildcards 16:23:58 GMT it's best if you keep track of the names of your keys instead of using the "KEYS" command 16:24:17 GMT if you want a nice, fast, low-latency Redis, KEYS is not your friend, ever 16:24:40 GMT okay I'm probably only handling a few 1000 keys 16:24:50 GMT so i'd have to put them into a set? 16:24:56 GMT yes 16:24:58 GMT that'd be way more efficient 16:25:05 GMT I basically want to get everything out of redis to batch insert into a database 16:25:09 GMT that's the ideal way of doing things in Redis 16:25:12 GMT but I want to get different types of keys 16:25:16 GMT yeah, track 'em in a set 16:25:19 GMT and then you have the names of them 16:25:50 GMT "KEYS" is the "nuclear option" not to be used for production code. I use it on a dev instance to play around / debug stuff sometimes 16:26:22 GMT I basically want to avoid doing a get for all the keys 16:26:27 GMT I just watch to fetch them all in batch 16:26:30 GMT MGET 16:26:33 GMT (multi-get) 16:26:50 GMT hmm ok thanks 16:27:07 GMT sure. gotta run now. have a good one! 19:41:25 GMT anyone worked with redis and node/socket.io able to answer some design questions? 19:43:00 GMT little confused by how to watch for change on values in redis, and how to manage subscriptions ... but that gets a bit off topic for here 19:44:22 GMT Thinking maybe I should watch a queue and not redis... 19:47:39 GMT need to maintain a cache of current states but also trigger a publish on change 19:51:05 GMT ill try again on a weekday... 21:54:11 GMT hello. for the zscan operator of sorted sets, does the answer come back with a cursor and order that stays consistent with the score? 21:58:42 GMT for [a_something 0, ab_wewqe 1, a_safadsf 2, a_trewtr 3, ab_vcvxzv 4, a_juiu 5] and a zscan search on ab_*, i want to get back [ab_wewqe 1, ab_vcvxzv 4] preserving the order of the set and getting back the right cursor 22:10:57 GMT hello 22:11:32 GMT can a single instance of redis be used on a server with multiple users with data isolated/secured from each other?