Hi, I have a view where each document returns two keys, a timestamp and an ip addres I have a query like this
return_by_ip?key=[%222013-01-02T09:15:15.742Z%22,%2218.72.0.5%22] I know that I can use startkey, endkey to make sure I get all timestamps with the ip address I want, but what I want is to send in multiple ip addresses, I can do that with a keys query, but not sure then how I should do a query that 1. ignores the timestamps (which are being used to sort) 2. get more than one ip address with the query. thanks
