CouchDB doesn't support multi-key queries embedded into URLs, for the
reason that URLs have a limited length (typically 4K)
> The RESULT from the call to:
>
>
http://127.0.0.1:5984/simple_test_database/_design/Project/_view/all?...
>
> Looks like this:
>
> "{"total_rows":7,"rows":[]}"
>
> Even though there are 7 entries in that view, why are there no
> results?
I think there are 7 rows in the entire view, but none of them match
any of the three keys you gave.
Another example: the database 'test' contains 2 documents.
$ curl
http://127.0.0.1:5984/test/_all_docs?key=%22garbage%22
{"total_rows":2,"rows":[]}
Anyway, these questions would probably be best asked on the couchdb-
user mailing list, as they're not related to CouchRest.