RESTful, efficient way to query List.contains(element)? - Stack Overflow most recent 30 from stackoverflow.com2009-12-02T10:57:07Zhttp://stackoverflow.com/feeds/question/445619http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/445619/restful-efficient-way-to-query-list-containselement1RESTful, efficient way to query List.contains(element)?Gili2009-01-15T04:15:20Z2009-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#4457071Answer by Dustin for RESTful, efficient way to query List.contains(element)?Dustin2009-01-15T05:00:47Z2009-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#4457351Answer by madlep for RESTful, efficient way to query List.contains(element)?madlep2009-01-15T05:13:34Z2009-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#4457840Answer by Rich Apodaca for RESTful, efficient way to query List.contains(element)?Rich Apodaca2009-01-15T05:39:18Z2009-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>