Does CouchDB have a way to return back the documents that do not meet a certain filter criteria? I am using Python' API and provided an example below:
couch['test_db'].view('doc/entrybyname', key=value, include_docs=True)
Say I wanted all the documents that didn't match the key value
...does CouchDB offer a way to do this?
Right now I am getting all documents than filtering them as needed which is very inefficient, especially as the database grows in size.
Thanks for your help in advance.
Brian