Re: [nodejs] Re: Simple Node/Redis Taskqueue

2013-04-12 Thread Bryan Paluch
I made a module that does brpoplpush to queue the message, and uses pub sub to message back the reply you may be able to use. I plan on adding working queue monitoring in the future. https://npmjs.org/package/redis-jobs On Friday, April 12, 2013 9:34:11 PM UTC-4, Tom Dunn wrote: > > Great, tha

[nodejs] Re: pipe two http request

2012-10-24 Thread Bryan Paluch
I did something like this a while ago for a demo, you can set up a server that on a post emits an event for each chunk it receives, and sends it to another clients GET request. The trick is you need to have the one client request their GET before the POST starts. Here is a poor example of this.

[nodejs] Re: SIP redirect server

2013-07-30 Thread Bryan Paluch
You may also want to take a look at https://npmjs.org/package/sip I have used it in a few projects, including a redirect server. -- -- Job Board: http://jobs.nodejs.org/ Posting guidelines: https://github.com/joyent/node/wiki/Mailing-List-Posting-Guidelines You received this message because yo