Skip to content

Instantly share code, notes, and snippets.

@rnewson
Created August 27, 2019 10:54
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rnewson/14a8175a295017ddf5d772331ea445c5 to your computer and use it in GitHub Desktop.
Save rnewson/14a8175a295017ddf5d772331ea445c5 to your computer and use it in GitHub Desktop.
➜ ~ curl -gi 'http://foo:bar@localhost:15984/db1/_design/personen/_view/actief?keys=["10002","10003"]'
HTTP/1.1 200 OK
Cache-Control: must-revalidate
Content-Type: application/json
Date: Tue, 27 Aug 2019 10:53:16 GMT
Server: CouchDB/2.3.1-dirty (Erlang OTP/22)
Transfer-Encoding: chunked
X-Couch-Request-ID: 447c12072b
X-CouchDB-Body-Time: 0
{"total_rows":2,"offset":0,"rows":[
{"id":"persoon_2_10002","key":"10002","value":1},
{"id":"persoon_2_10003","key":"10003","value":1}
]}
➜ ~ curl -gi 'http://foo:bar@localhost:15984/db1/_design/personen/_view/actief?keys=["10002","10003","10002"]'
HTTP/1.1 200 OK
Cache-Control: must-revalidate
Content-Type: application/json
Date: Tue, 27 Aug 2019 10:53:21 GMT
Server: CouchDB/2.3.1-dirty (Erlang OTP/22)
Transfer-Encoding: chunked
X-Couch-Request-ID: af99afba5b
X-CouchDB-Body-Time: 0
{"total_rows":2,"offset":0,"rows":[
{"id":"persoon_2_10003","key":"10003","value":1},
{"id":"persoon_2_10002","key":"10002","value":1},
{"id":"persoon_2_10002","key":"10002","value":1}
]}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment