[nodejs] How to convert iLBC, amr, speex audio stream in realtime?

2014-04-30 Thread jason .
convert at server side. I have design the API :) srcAudioStream.pipe(audioConvert('ilbc', 'amr')).pipe(destAudioStream) Any module can make the `audioConvert` ? -- Best regards, 桂林 (Gui Lin) guileen@twitter <https://twitter.com/#!/guileen> 桂糊涂@weibo <http://weib

Re: [nodejs] Re: preserve color when execute shell commands in windows

2014-03-29 Thread jason .
to the Google > Groups "nodejs" group. > To post to this group, send email to nodejs@googlegroups.com > To unsubscribe from this group, send email to > nodejs+unsubscr...@googlegroups.com > For more options, visit this group at > http://groups.google.com/group/node

[nodejs] [ANN] mongoskin@1.3.20-alpha published refctor mongoskin

2014-02-15 Thread jason .
Mongoskin has refactored, the version number will keep same with node-mongodb-native. Mongoskin is a wrapper of node-mongodb-native. Let me know if you have any advices for new version mongoskin. project home: https://github.com/kissjs/node-mongoskin -- Best regards, 桂林 (Gui Lin) guileen

Re: [nodejs] Re: server accepting JSON in POST - how to secure/validate?

2012-10-19 Thread
I use node-validate 桂林 在 2012-10-19,上午6:05,L3monPi3 写道: > Hi HG, I have a similar project in what I'm working. > Can you tell me how do you finish or how you did the validations ? > > Thanks > > On Wednesday, February 29, 2012 7:18:27 AM UTC-3, Jason.桂林(Gui Lin) wrote:

Re: [nodejs] How cluster master pass data to workers ondata listener

2012-08-30 Thread jason .
B but they are not on the same process. 在 2012-8-30 晚上11:34,"ribao wei" 写道: > Hi 桂林: > > Nice to see a Chinese in the maillist. > > From what I read, children processes do I/O directly, not through the > master. > > Ribao Wei > > On Thu, Aug 30, 2012 at 9:58 A

[nodejs] How cluster master pass data to workers ondata listener

2012-08-30 Thread jason .
data back to client When send to client, the worker process should send data to master process, we need call `process.send` to the master process, and the master send data back to client. I know few thing about multi-process binding on a same port. -- Best regards, 桂林 (Gui Lin) gu

[nodejs] Looking for a good xml parser in stream mode

2012-08-29 Thread jason .
A protocol using xml, socket stream first time I recieve blabl 3rd time I recieve ablabla , and left https://twitter.com/#!/guileen> 桂糊涂@weibo guileen@github -- Job Board: http://jobs.nodejs.org/ Posting guidelines: https://github.com/joy

Re: [nodejs] node.js response time increase with concurrent connections

2012-08-23 Thread
ease the > open file soft/hard limit. Once you increase that, you will be fine with > 1000 concurrent requests. > > but there are other factors and will overwrite the limit. please see my > website for tips... murvinlai.com > > > On Thu, Aug 23, 2012 at 3:51 AM,

Re: [nodejs] It is hard to debug timeout problem

2012-08-23 Thread jason .
more options, visit this group at > http://groups.google.com/group/nodejs?hl=en?hl=en > -- Best regards, 桂林 (Gui Lin) guileen@twitter <https://twitter.com/#!/guileen> 桂糊涂@weibo <http://weibo.com/guileen> guileen@github <https://github.com/guileen> -- Job Boar

[nodejs] node.js response time increase with concurrent connections

2012-08-22 Thread jason .
) We can see that, node.js response time increased with concurrent connections, any one can explain this? And how to avoid this problem, and if it is not http but tcp, will it be an critical issue for multi player online game server, there will be many concurrent connections. -- Best regards, 桂林

Re: [nodejs] It is hard to debug timeout problem

2012-08-22 Thread jason .
Node js log is totally non-sequence, it is a big problem. 2012/8/23 jason.桂林 > The most difficult to me now is how to debug timeout issue, a very complex > logic which many async IO, can't find out where timeout. > > -- > Best regards, > > 桂林 (Gui Lin) > > guil

[nodejs] It is hard to debug timeout problem

2012-08-22 Thread jason .
The most difficult to me now is how to debug timeout issue, a very complex logic which many async IO, can't find out where timeout. -- Best regards, 桂林 (Gui Lin) guileen@twitter <https://twitter.com/#!/guileen> 桂糊涂@weibo <http://weibo.com/guileen> guileen@github <https:

[nodejs] nodejs memcached client

2012-08-21 Thread jason .
onnect the memcache, if memcache service restarted. Any other good options? -- Best regards, 桂林 (Gui Lin) guileen@twitter 桂糊涂@weibo guileen@github -- Job Board: http://jobs.nodejs.org/ Posting guidelines: https://github.com/joyent/node/wiki/Mailing-List-Posting-Guidelines You received this message b

Re: [nodejs] prevent timeout when uncaughtException

2012-08-16 Thread
Thanks, it's helpful to me. 在 2012-8-17,上午10:24, darcy 写道: > I've written a blog for how to use domain, may be helpful for you. > btw: it's chinese > > http://blog.sina.com.cn/s/blog_7469010134wr.html > > On Thursday, August 16, 2012 12:51:55 PM UTC+8, Jaso

[nodejs] prevent timeout when uncaughtException

2012-08-15 Thread jason .
To prevent server halt on error, listen the `process.on('uncaughtException')`, but the response will timeout. How to fix this problem, will these timeout req/res make memory leak ? -- Best regards, 桂林 (Gui Lin) guileen@twitter <https://twitter.com/#!/guileen> 桂糊涂@weibo &

[nodejs] Any good tool can generate REST API document?

2012-06-18 Thread jason .
Hi guys, Any good tool can generate REST API document? -- Best regards, 桂林 (Gui Lin) guileen@twitter <https://twitter.com/#!/guileen> 桂糊涂@weibo <http://weibo.com/guileen> guileen@github <https://github.com/guileen> -- Job Board: http://jobs.nodejs.org/ Posting

[nodejs] res.setHeader is so slow

2012-06-15 Thread jason .
I found writeHead<http://nodejs.org/api/http.html#http_response_writehead_statuscode_reasonphrase_headers> is much faster if there is no setHeader<http://nodejs.org/api/http.html#http_response_setheader_name_value> before. -- Best regards, 桂林 (Gui Lin) guileen@twitter <http

Re: [nodejs] Is nodejs good to be a video live broadcast server?

2012-06-12 Thread jason .
r/stream-pump/ > > > On Tuesday, June 12, 2012 11:33:50 PM UTC-4, Jason.桂林(Gui Lin) wrote: >> >> I want to make a video live broadcast server, I don't know how to make >> one, and I don't if nodejs is good to do this thing, I hope guys could give >> me some

[nodejs] Is nodejs good to be a video live broadcast server?

2012-06-12 Thread jason .
I want to make a video live broadcast server, I don't know how to make one, and I don't if nodejs is good to do this thing, I hope guys could give me some suggestion. -- Best regards, 桂林 (Gui Lin) guileen@twitter <https://twitter.com/#!/guileen> 桂糊涂@weibo <http://weibo.c

Re: [nodejs][ANN] siege.js by kissjs.org publish 0.0.2

2012-05-31 Thread jason .
Good suggestion. 2012/5/31 Matt > .on()? > > That's rather confusing considering how much .on() is used in Node for > event emitters. I assume you mean .port()? > > > On Wed, May 30, 2012 at 3:45 AM, jason.桂林 wrote: > >> I forgot add an example for it

Re: [nodejs][ANN] siege.js by kissjs.org publish 0.0.2

2012-05-30 Thread jason .
exteranal server. > > Do you think it is simple to add? :) > > On Sun, May 6, 2012 at 7:04 PM, jason.桂林 wrote: > >> siege.js is a http benchmark module. >> >> features: >> >> * benchmark with keep alive connection, (useful on mac os) >> * colorf

Re: [nodejs] Re: JSON5: modern JSON

2012-05-28 Thread jason .
ilt off of Douglas Crockford's own eval()-free JSON parser, >>>>>> and it's available now on npm as "json5". >>>>>> >>>>>> I'd love to get your guys' thoughts and feedback on this. And it'd be >>>>>> a d

Re: [nodejs] Re: JSON5: modern JSON

2012-05-28 Thread jason .
t;>>> Job Board: http://jobs.nodejs.org/ >>>> Posting guidelines: >>>> https://github.com/joyent/node/wiki/Mailing-List-Posting-Guidelines >>>> You received this message because you are subscribed to the Google >>>> Groups "nodejs" gr

[nodejs][ANN] mongoskin release 0.3.6, by kissjs.org

2012-05-15 Thread jason .
gt; db.user.find().limit(10).sort({created:-1}).limit(10).toArray(function(err, > users){ > console.log(users); > }) https://github.com/kissjs/node-mongoskin -- Best regards, 桂林 (Gui Lin) guileen@twitter <https://twitter.com/#!/guileen> 桂糊涂@weibo <http://weibo.com/guilee

Re: [nodejs] Re: Connection model for Mongo using Node.js

2012-05-10 Thread jason .
; To post to this group, send email to nodejs@googlegroups.com > To unsubscribe from this group, send email to > nodejs+unsubscr...@googlegroups.com > For more options, visit this group at > http://groups.google.com/group/nodejs?hl=en?hl=en > -- Best regards, 桂林 (Gui Lin) gu

[nodejs] [ANN] node in process cache proposal

2012-05-08 Thread jason .
rvice like chat and game. Here is my proposal for in process cache. 1. TTL or LRU 2. store as primitive type not string. 3. use a native module, can use more memory than v8 limitation. I hope this could be apart of node.js. I don't know are there any existing modules like this? -- Best r

Re: [nodejs] Re: How to make a high quality chat server?

2012-05-06 Thread jason .
k for a competitor in the past, but that does not > bias my choice, > another option is Pusher (http://pusher.com), or for more, you can look > here: > http://www.leggetter.co.uk/real-time-web-technologies-guide ) > > Hopefully this gives some useful information or things to think

[nodejs][ANN] siege.js by kissjs.org publish 0.0.2

2012-05-06 Thread jason .
e') > .get('/get-cookie') > .get('/').withoutCookie > .attack() enjoy it. by kissjs.org. We are looking for collaborators. -- Best regards, 桂林 (Gui Lin) guileen@twitter 桂林-V@weibo <http://weibo.com/guileen> guileen@github <https://github.com/guileen

Re: [nodejs] Re: How to make a high quality chat server?

2012-05-06 Thread jason .
t; > On Sunday, May 6, 2012 4:04:30 AM UTC-7, Jason.桂林(Gui Lin) wrote: >> >> I just join hackthon party, our team made a very cool chat web >> application in 24 hours. >> >> But I know, it is a demo, It use socket.io, redis, I think it is a >> little expensive o

[nodejs] How to make a high quality chat server?

2012-05-06 Thread jason .
core internal server? Some body said ZMQ is very fast message queue, is it help with this case? -- Best regards, 桂林 (Gui Lin) guileen@twitter 桂林-V@weibo <http://weibo.com/guileen> guileen@github <https://github.com/guileen> -- Job Board: http://jobs.nodejs.org/ Posting g

[nodejs]Hey, Team up

2012-05-03 Thread jason .
hub.com/64 -- Best regards, 桂林 (Gui Lin) guileen@twitter 桂林-V@weibo <http://weibo.com/guileen> guileen@github <https://github.com/guileen> -- Job Board: http://jobs.nodejs.org/ Posting guidelines: https://github.com/joyent/node/wiki/Mailing-List-Posting-Guidelines You received this m

Re: [nodejs] request an english name for a node development group

2012-05-03 Thread jason .
Thanks a lot. every one. Finally I pick a very short name: '64' https://github.com/64 If any one have interesting join this opensource team, contact me. -- Job Board: http://jobs.nodejs.org/ Posting guidelines: https://github.com/joyent/node/wiki/Mailing-List-Posting-Guidelines You received t

Re: [nodejs]How github redirect ry/node to joyent/node

2012-05-02 Thread jason .
have admin rights.' > > On Thursday, 3 May 2012 05:05:26 UTC+2, Jason.桂林(Gui Lin) wrote: >> >> I also want to transfer my repo to an organization, but github said it >> will not do redirect things, but how https://github.com/ry/node auto >> redirect to https://gi

[nodejs]How github redirect ry/node to joyent/node

2012-05-02 Thread jason .
I also want to transfer my repo to an organization, but github said it will not do redirect things, but how https://github.com/ry/node auto redirect to https://github.com/joyent/node ? -- Best regards, 桂林 (Gui Lin) guileen@twitter 桂林-V@weibo <http://weibo.com/guileen> guileen@github

Re: [nodejs] request an english name for a node development group

2012-05-01 Thread jason .
p, send email to nodejs@googlegroups.com > To unsubscribe from this group, send email to > nodejs+unsubscribe@**googlegroups.com > For more options, visit this group at > http://groups.google.com/**group/nodejs?hl=en?hl=en<http://groups.google.com/group/nodejs?hl=en?hl=en> >

Re: [nodejs] request an english name for a node development group

2012-05-01 Thread jason .
of 'fans' as the sounds. But 'nuofen' looks like not a good english name. 2012/5/2 jason.桂林 > What do you plan on building? :) > > A set of tools, missing modules, etc. > > About chinese name, not yet, chinese name seems not very important in > developer so

Re: [nodejs] request an english name for a node development group

2012-05-01 Thread jason .
at 11:56 AM, Marak Squires wrote: > > I would say something like: > > "Team Awesome" > > On Tue, May 1, 2012 at 8:44 PM, jason.桂林 wrote: > > I am a chinese, so my english not very good, but I need a english name for > the node development group. > > Thi

[nodejs] request an english name for a node development group

2012-05-01 Thread jason .
guage. 1. nodule (node module) 2. kissnode 3. nude I hope you cool guys could tell me which is better, or give me a better name. Thanks a lot. -- Best regards, 桂林 (Gui Lin) guileen@twitter 桂林-V@weibo <http://weibo.com/guileen> guileen@github <https://github.com/guileen> --

Re: [nodejs] Re: How to change process name? process.title not works

2012-05-01 Thread jason .
app[100..110].sock') this code will create a tcp server listen at /tmp/app100.sock to /tmp/app110.sock, each sock file has 4 cluster workers. 2012/5/1 Chris Rhoden > I remember reading in the docs that process.title didn't work on OSX, but > it looks like that addendum isn&#

Re: [nodejs] Re: How to change process name? process.title not works

2012-05-01 Thread jason .
OSX v0.6.16, still fails 2012/5/1 jason.桂林 > I using OSX / node v0.6.15 , I test it again > > 2012/5/1 mscdex > >> On May 1, 11:07 am, jason.桂林 wrote: >> > `ps | grep node` show still `node test.js` >> >> It works fine for me on Linux/no

Re: [nodejs] Re: How to change process name? process.title not works

2012-05-01 Thread jason .
I using OSX / node v0.6.15 , I test it again 2012/5/1 mscdex > On May 1, 11:07 am, jason.桂林 wrote: > > `ps | grep node` show still `node test.js` > > It works fine for me on Linux/node v0.6.16. > > -- > Job Board: http://jobs.nodejs.org/ > Posting guidelines: >

[nodejs] How to change process name? process.title not works

2012-05-01 Thread jason .
http://nodejs.org/api/process.html#process_process_title process.title not works var http = require('http'); > http.createServer().listen(3000); > console.log(process.title) > process.title = 'nodenode' `ps | grep node` show still `node test.js` -- Best rega

Re: [nodejs] Re: redis helloworld slow than redis and helloworld

2012-05-01 Thread jason .
Why "load balancing is not very optimal at the moment. " ? any background story? -- Job Board: http://jobs.nodejs.org/ Posting guidelines: https://github.com/joyent/node/wiki/Mailing-List-Posting-Guidelines You received this message because you are subscribed to the Google Groups "nodejs" group.

Re: [nodejs] Re: redis helloworld slow than redis and helloworld

2012-05-01 Thread jason .
I run 4 node instance listen on different port, use nginx load balance module, with keep-alive connection, this problem fixed. Very fast. 2012/5/1 jason.桂林 > Oh, thanks, you explain this problem very clearly. > > I think this could be optimize by cluster > > if (cluster.isMas

Re: [nodejs] Re: redis helloworld slow than redis and helloworld

2012-05-01 Thread jason .
on > "seconds per response". > redisClient standalone = 27k RPS = 0.04ms/response > helloworld = 7.5 RPS = 0.13ms/response > Expected sum = 0.17ms/response = 5.8k RPS, which is pretty close to > what you're seeing. > > On Apr 30, 9:00 am, jason.桂林 wro

[nodejs] redis helloworld slow than redis and helloworld

2012-04-30 Thread jason .
nt standalone, it is 27k RPS. test helloworld without redis is 7.5k RPS. Why a 27K code slow down a 7.5k code ? How can I optimize it? -- Best regards, Jason Green 桂林 -- Job Board: http://jobs.nodejs.org/ Posting guidelines: https://github.com/joyent/node/wiki/Mailing-List-Posting-Guideli

Re: [nodejs] Re: Building Node.js Modular Web Application

2012-04-30 Thread jason .
s.google.com/group/nodejs?hl=en?hl=en > > -- > Job Board: http://jobs.nodejs.org/ > Posting guidelines: > https://github.com/joyent/node/wiki/Mailing-List-Posting-Guidelines > You received this message because you are subscribed to the Google > Groups "nodejs" group

Re: [nodejs] Re: Route design

2012-04-29 Thread jason .
@TJ you are right, compare simple kick.js with express is irrelevant. I will use node helloworld instead of express to do comparing. Optimized with regular node http.createServer(), why I didn't realize that. -- Best regards, Jason Green 桂林 -- Job Board: http://jobs.nodejs.org/ Po

Re: [nodejs]Route design

2012-04-29 Thread jason .
What I said previously maybe wrong, kick.js can use connect middleware, just test logger, static, cookieParser, session, bodyParser 2012/4/29 jason.桂林 > @ Susiripala I am afraid I can't. Why kick.js is faster because it is very > simple with limited feature, it can NOT compatib

Re: [nodejs]Route design

2012-04-28 Thread jason .
> What I feel is like this. > > Express is not bad & it can be improved. > @TJ > Why are you so against on this discussion. > > If I'm the author of express. > I'll ask jason to patch express and try to make his improvements into > express core :P > &

Re: [nodejs]Route design

2012-04-28 Thread jason .
ting-Guidelines > You received this message because you are subscribed to the Google > Groups "nodejs" group. > To post to this group, send email to nodejs@googlegroups.com > To unsubscribe from this group, send email to > nodejs+unsubscr...@googlegroups.com > For more options

Re: [nodejs]Route design

2012-04-28 Thread jason .
under my test, routing is not only 5%. I will show my benchmark soon. 2012/4/28 tjholowaychuk > I can personally guarantee you routing will be less than 5% of your > bottleneck, focus on real-world problems, and profile first > > On Friday, 27 April 2012 10:39:57 UTC-7, Jason.桂林 wr

[nodejs]Route design

2012-04-27 Thread jason .
require('./user') > get/user.js > // url: /user/ and url: /user/index goes here > user.index = function(req, res){} > // url: /user/login goes here > user.login = function(req, res) {} but this method has a problem, how define param routing and regex routing? What do you t

Re: [nodejs] Re: [node.js] Why my request slower and slower

2012-04-26 Thread jason .
tps://github.com/joyent/node/wiki/Mailing-List-Posting-Guidelines > You received this message because you are subscribed to the Google > Groups "nodejs" group. > To post to this group, send email to nodejs@googlegroups.com > To unsubscribe from this group, send email to > nod

[nodejs] Re: [node.js] Why my request slower and slower

2012-04-26 Thread jason .
fixed, my foolish mistake 2012/4/26 jason.桂林 > I am writing a http benchmark module in node.js. I got a problem. I > separate my benchmark to several task to run. one task by one task. each > task define like 'GET /url for 1 times'. > > My problem is, if I start

[nodejs] Re: [node.js] Why my request slower and slower

2012-04-26 Thread jason .
arate the task to 10 task, 'GET / for 1 times', the first task response fast, but the other tasks slower and slower. http://stackoverflow.com/questions/10328492/why-my-request-slower-and-slower 2012/4/26 jason.桂林 > My question attached code and image, please help me on stackove

[nodejs] [node.js] Why my request slower and slower

2012-04-26 Thread jason .
My question attached code and image, please help me on stackoverflow, thanks a lot. http://stackoverflow.com/questions/10328492/why-my-request-slower-and-slower -- Best regards, Jason Green 桂林 -- Job Board: http://jobs.nodejs.org/ Posting guidelines: https://github.com/joyent/node/wiki

Re: [nodejs]will kilos setTimeout spend too much resourece?

2012-04-25 Thread jason .
ot of timers are not a good, and not that much accurate. > > > On Monday, 23 April 2012 13:49:08 UTC+8, Jason.桂林 wrote: >> >> I need to write a service use something like in memory cache, and I want >> to do `expire` things in setTimeout, will it very slow, If I ex

Re: [nodejs] Re: network benchmark heat map?

2012-04-25 Thread jason .
@mscdex yeap, heat-tracer, it is, what is the x/y/z is means? 2012/4/25 mscdex > On Apr 24, 9:43 pm, mscdex wrote: > > On Apr 24, 8:30 pm, jason.桂林 wrote: > > > > > Thanks, Unlike the images in your link, what I saw is depth color in > > > each dot not

Re: [nodejs] network benchmark heat map?

2012-04-24 Thread jason .
Thanks, Unlike the images in your link, what I saw is depth color in each dot not block 2012/4/25 Ben Noordhuis : > On Tue, Apr 24, 2012 at 19:38, jason.桂林 wrote: >> I ever saw some chart like heat map, but it is for http server >> benchmark, it has x y, also a depth color d

[nodejs] network benchmark heat map?

2012-04-24 Thread jason .
Jason Green 桂林 -- Job Board: http://jobs.nodejs.org/ Posting guidelines: https://github.com/joyent/node/wiki/Mailing-List-Posting-Guidelines You received this message because you are subscribed to the Google Groups "nodejs" group. To post to this group, send email to nodejs@goog

Re: [nodejs]Hide cursor in CLI

2012-04-24 Thread jason .
Thanks very much 2012/4/24 Ryan Schmidt : > > On Apr 24, 2012, at 09:33, Ryan Schmidt wrote: > >> On Apr 24, 2012, at 09:28, jason.桂林 wrote: >> >>> I want to write a CLI program, but I got a little problem >>> >>> var x = 0; setInterval(func

Re: [nodejs]Hide cursor in CLI

2012-04-24 Thread jason .
Many node CLI program. 2012/4/24 Ryan Schmidt : > > On Apr 24, 2012, at 09:28, jason.桂林 wrote: > >> I want to write a CLI program, but I got a little problem >> >> var x = 0; setInterval(function(){ process.stdout.write('\r' + (++x)) }, 10) >> >>

[nodejs]Hide cursor in CLI

2012-04-24 Thread jason .
I want to write a CLI program, but I got a little problem var x = 0; setInterval(function(){ process.stdout.write('\r' + (++x)) }, 10) I wrote this simple program , how to hide cursor in CLI? -- Best regards, Jason Green 桂林 -- Job Board: http://jobs.nodejs.org/ Posting guidelin

Re: [nodejs]will kilos setTimeout spend too much resourece?

2012-04-23 Thread jason .
nd then call this function repeatedly, rather than creating a closure each > setTimeout call, that will lower your memory and cpu overhead substantially. > > > On Monday, April 23, 2012 7:49:08 AM UTC+2, Jason.桂林 wrote: >> >> I need to write a service use something like in me

[nodejs]will kilos setTimeout spend too much resourece?

2012-04-22 Thread jason .
I need to write a service use something like in memory cache, and I want to do `expire` things in setTimeout, will it very slow, If I expire too much things, about kilos to millions. -- Best regards, Jason Green 桂林 -- Job Board: http://jobs.nodejs.org/ Posting guidelines: https://github.com

[nodejs] Any way to do benchmark of http handlers for request and response without send request?

2012-04-22 Thread jason .
pass fake request and response to my handlers, do all benchmark without network. Can I ? BTW, I have done very fast request dispatch. https://github.com/guileen/node-kickstart -- Best regards, Jason Green 桂林 -- Job Board: http://jobs.nodejs.org/ Posting guidelines: https://github.com/joyent

Re: [nodejs] why this code memory leak

2012-02-29 Thread jason .
exec(function(err, data){}) this won't listen error? 在 2012年2月29日 下午7:56,Arnout Kazemier 写道: > You don't have any error listeners assigned to redis > > On Wednesday, February 29, 2012 at 10:25 AM, jason.桂林 wrote: > > If you run below code, and restart you redis server,

Re: [nodejs] Re: server accepting JSON in POST - how to secure/validate?

2012-02-29 Thread jason .
> Groups "nodejs" group. > To post to this group, send email to nodejs@googlegroups.com > To unsubscribe from this group, send email to > nodejs+unsubscr...@googlegroups.com > For more options, visit this group at > http://groups.google.com/group/nodejs?hl=en?hl=en >

[nodejs] why this code memory leak

2012-02-29 Thread jason .
if(err) console.log(err.stack); if(data) data = data[0]; }); }, 1); process.on('uncaughtException', function(err) { console.log(err.stack); }) -- Best regards, Jason Green 桂林 -- Job Board: http://jobs.nodejs.org/ Posting guidelines: https://github.com/joyent/n

[nodejs] How to handle the connection error of mongodb and redis

2012-02-29 Thread jason .
service to do all initial things again? -- Best regards, Jason Green 桂林 -- Job Board: http://jobs.nodejs.org/ Posting guidelines: https://github.com/joyent/node/wiki/Mailing-List-Posting-Guidelines You received this message because you are subscribed to the Google Groups "nodejs" group.