09:11:04 GMT Has anyone tried representing GPX tracks in Redis? I'm not sure the GEO commands can be useful here, as they just deal with point data, or is there a secondary structure I could use for ordering as e.g. LineString? 09:15:56 GMT GPX tracks? 09:16:25 GMT for ordering stuff sorted sets are pretty much the only possiblity 09:17:31 GMT Cool, so I'd need e.g: `ZADD myroute 0 pointA 1 pointB 2 pointC` 09:21:46 GMT seems about right 09:25:11 GMT Trouble is storing the x/y coordinates... I *think* I could add the xy's to a separate key (say, pointindex) using GEO, then `ZUNIONSTORE out 2 myroute pointindex WEIGHTS 0 1` to extract the points for members of `myroute`? 09:26:07 GMT or you could encode them as json or so 09:26:52 GMT or struct.pack('!ff', lat, long) :D 09:29:08 GMT ok, nice, where would I store that on the key though? 09:37:12 GMT on the key? 09:38:35 GMT you'd use that as member in the sorted set, or do you mean something else 09:39:07 GMT ah, right! yep that's what I was wondering. 09:39:08 GMT you could use it as key name too if you need, key names are arbitrary and binary-safe 09:39:18 GMT ok cheers, news to me 09:40:13 GMT awesome :D. think i'm away then, appreciate the help. 09:40:26 GMT you're welcome 18:17:22 GMT Hello 18:19:27 GMT Hello 18:21:37 GMT Anyone using predis here? 23:10:22 GMT so i know that you can add to a geoset and then search by radius from the members in that set 23:11:06 GMT but what if i want to search by more conditions than just (longitude/latitude), what if i want to search with more conditions like a (yearBuilt, and Status) bool 23:15:19 GMT you can't (natively)