python - How does CouchDB handle updating views after I update a particular document? -
i have database of size 200mb,and around 10 views written on it. gives me view file occupies around 3-4gb on disk
all docs in db updated once everyday interval of minute between each update,so number of documents constant.(number of docs=number of minutes in 24 hours)
when update doc it's new revision , compact db immediately(to delete old rev) after,what happens view file?do values in b-tree updated new values,or there new entry on b-tree,hence increasing size of view file?
what best way handle situation while conserving disk space , ensuring speed of views?
Comments
Post a Comment