I have a key in key field in couchdb. where my key differs for each document. I need to get documents for various keys: say 1st key is "123123", 2nd key is "234234", I have to pass these in a single query and get results for both the keys using curl command.
In SQL we can do it as:
select * from table where user_id in "123123,234234"; Similarly I need to do this in couchdb using curl. Is this possible using curl command?
Thanks in advance.