RESTful, efficient way to query List.contains(element)? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-02T10:57:07Z http://stackoverflow.com/feeds/question/445619 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/445619/restful-efficient-way-to-query-list-containselement 1 RESTful, efficient way to query List.contains(element)? Gili 2009-01-15T04:15:20Z 2009-01-15T14:02:39Z <p>Given:</p> <pre><code>/images: list of all images /images/{imageId}: specific image /feed/{feedId}: potentially huge list of some images (not all of them) </code></pre> <p>How would you query if a particular feed contains a particular image without downloading the full list? Put another way, how would you check whether a resource state contains a component without downloading the entire state? The first thought that comes to mind is:</p> <pre><code>Alias /images/{imageId} to /feed/{feedId}/images/{imageId} </code></pre> <p>Clients would then issue HTTP GET against <code>/feed/images/{id}</code> to check for its existence. The downside I see with this approach is that it forces me to hard-code logic into the client for breaking down an image URI to its proprietary id, something that REST frowns upon. Ideally I should be using the opaque image URI. Another option is:</p> <pre><code>Issue HTTP GET against /feed/{feedId}?contains={imageURI} to check for existence </code></pre> <p>but that feels a lot closer to RPC than I'd like. Any ideas?</p> http://stackoverflow.com/questions/445619/restful-efficient-way-to-query-list-containselement/445707#445707 1 Answer by Dustin for RESTful, efficient way to query List.contains(element)? Dustin 2009-01-15T05:00:47Z 2009-01-15T05:00:47Z <p>What's wrong with this?</p> <pre><code>HEAD /images/id </code></pre> <p>It's unclear what "feed" means, but assuming it contains resources, it'd be the same:</p> <pre><code>HEAD /feed/id </code></pre> http://stackoverflow.com/questions/445619/restful-efficient-way-to-query-list-containselement/445735#445735 1 Answer by madlep for RESTful, efficient way to query List.contains(element)? madlep 2009-01-15T05:13:34Z 2009-01-15T05:13:34Z <p>It's tricky to say without seeing some examples to provide context.</p> <p>But you could just have clients call <code>HEAD /feed/images/{imageURI}</code> (assuming that you might need to encode the imageURI). The server would respond with the usual HEAD response, or with a 404 error if the resource doesn't exist. You'd need to code some logic on the server to understand the imageURI.</p> <p>Then the client either uses the image meta info in the head, or gracefully handles the 404 error and does something else (depending on the application I guess)</p> http://stackoverflow.com/questions/445619/restful-efficient-way-to-query-list-containselement/445784#445784 0 Answer by Rich Apodaca for RESTful, efficient way to query List.contains(element)? Rich Apodaca 2009-01-15T05:39:18Z 2009-01-15T05:39:18Z <p>How about setting up a ImageQuery resource:</p> <pre> # Create a new query from form data where you could constrain results for a given feed. # May or may not redirect to /image_queries/query_id. POST /image_queries/ # Optional - view query results containing URIs to query resources. GET /image_queries/query_id </pre> <p><a href="http://railscasts.com/episodes/111-advanced-search-form" rel="nofollow">This video</a> demonstrates the idea using Rails.</p>