It seems by default any query will only return up to 100 values.
ie:
db.values("mystore").done(function(myvalues) {
// myvalues.length <= 100, regardless of how many items are in `mystore`
});
The docs refer to the API being values(store_name, key_range, limit, offset, reverse)
, but apparently null
is not a valid limit. Also 0
and -1
just give me no results (or strangely, one result). How can I specify "unlimited results" without doing something silly like making the limit 999999
?