You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Nov 5, 2018. It is now read-only.
This issue rose when working against Cloudant. Their pricing is 5 times cheaper for GET requests than POST requests. I had a lot of requests for small sets of keys, nothing that couldn't go into a query string, and I had made this change in order to keep my bills down.
The actual change was rather small - just adding an optional parameter to the request -
let exampleQuery = {
reduce : true,
group : true,
keys : [ [a,b], [c,d] ],
forceGet: true // this is the parameter I added
};
Do you think this is something that should go into the main branch ?
Thanks
The text was updated successfully, but these errors were encountered:
This issue rose when working against Cloudant. Their pricing is 5 times cheaper for GET requests than POST requests. I had a lot of requests for small sets of keys, nothing that couldn't go into a query string, and I had made this change in order to keep my bills down.
The actual change was rather small - just adding an optional parameter to the request -
Do you think this is something that should go into the main branch ?
Thanks
The text was updated successfully, but these errors were encountered: