presuming i have a request with args of the form
?ids=1,2,3,4,5,6,7
etc (a list of tokens)
i'm interested in breaking up that list and forming a query for each to an upstream server
i.e.
http://upstream/id=1
http://upstream/id=2
etc
and then combining all the result together to respond to the original request
i'm wondering if this is a problem people have run into before, or any suggestions for approaches to solving this
thanks!
brad