Is it possible to search by key value in Apache CouchDB? Given the sample data below (spaced for readability):
{
"_id":"a754a63dcc7f319b02f7ce6de522ca26",
"_rev":"1-5bd88e53fe0869b8ce274b49a2c1ddf5",
"name":"john smith",
"email":"[email protected]",
"username":"jsmith"
}
Could I query the database for the user jsmith or for the user having the email [email protected]? How would I go about this?
Thanks!