cqs
cqs copied to clipboard
CouchDB Queue Service: API-compatible Amazon SQS implementation with NodeJS, CouchDB
Hello iriscouch! I am migrationBot, an [open-source](https://github.com/blakmatrix/node-migrator-bot) bot, and I'm here to help you migrate your codebase to node v0.8! Did you know that the "sys" module throws an error...
Is there a simple way to detect message additions or do I have to write my own changes filter and use couch dbs change notifications?
Check the CouchDB version and if `?stale=update_after` is supported (version 1.1 and later) then use that when hitting the views.
For example, set a threshold, 100ms and batch all messages that need to be created into one `_bulk_docs` update, and send that 100ms later. Bonus points for still using the...
I create a queue and all looks good. Here is the design doc source: https://gist.github.com/1211432 When sending a message I get a 500 response status from couchdb. In introduced some...
Hi again, Now, I'm able to successfully call ListQueues and CreateQueue, but when I attempt to call SendMessage I get the following error message: https://gist.github.com/gists/1068652 I feel like you don't...