How to get large volume of CouchDb data through Java API?

153 Views Asked by At

I am using Ektorp API to get from CouchDB, but to get 5 millions records it tooks 8 min(Apporx) on standalone machine. IS there any way to getch record faster.

I have created view on top of couchDB database and view result contains 5m records.

List results = db.queryView(query, Map.class);

where db is instance of CouchDbConnector class from Ektorp API.

0

There are 0 best solutions below