mapreduce - Couchbase: Why do my views never return more than 22 rows? -
i have view defined this:
function (doc, meta) { emit(meta.id, null); }
i'm expecting view return ids documents never returns more 22 documents. @ moment have more 300,000 documents in database.
i understand views update asynchronously, expect return more 22 results. i've tried leaving database running seems views not update after 22 documents have been added view.
you still using dev_
views. in order retrieve views using dev_
view have add &full_set=true
list of parameters. if wish retrieve results using 1 of apis have publish view , used published version of view instead.
Comments
Post a Comment