Hello, I have a db, about 7 500 documents, each document contains couple long arrays of prices. Pure size of this data is about 300-400Kb. db size in couchdb is 3.3 Gb. When I am doing the simple queiry like
function(doc) { emit(doc.symbol, null); } I am getting result only after 30 minutes and more! If I do "get" request from ruby with couchrest gem, then it is instantaneous. What I am doing wrong? What is the best way to store such long data arrays? Versions: Futon on Apache CouchDB 0.8.1-incubating processor -- intel 4 core Please, help