If the number of documents is more will the querying of data gets slower in CouchDB?
Example Scenario:
- I have a combobox in a form for customer name. When the user types the customer name, I have to do autofilling.
- There will be around 10k customer documents in the CouchDB. I understand that i have to create a view to do the same.
- CouchDB database is in the local machine where the application resides.
Question: Will it take more than 2 - 3 seconds to query the DB for matching customer names? Will querying take more time for each query if there are many documents in the CouchDB (say around 100000 documents)?
Any pointers on how to create views/index will be helpful.
Thanks in advance.