我正在使用couchDb。
在CouchDB中,我插入了1000个文档。 当我从数据库获取数据时,需要4秒才能检索1000个数据。如何减少从数据库中检索数据所需的时间?
{
{
"_id": "_design/syncStat",
"language": "javascript",
"views": {
"syncStat": {
"map": "function(doc) {\
emit(doc.order_placed_on, null)
}"
}
}
}
}
当我检索数据时,我正在使用此网址:http://localhost:5984/order_info/_design/syncStat/_view/syncStat
如果我有1000条记录,则返回结果需要4秒。它很慢,如何改善这种情况?