On Mon, Jul 22, 2013 at 1:04 PM, Ket <[email protected]> wrote:
> I use the cluster module according this manual:
> http://nodejs.org/api/cluster.html
>
> The block of code is:
>
> var cluster = require('cluster');
> var http = require('http');
> var numCPUs = require('os').cpus().length
>
>
>> if (cluster.isMaster) {
>>   // Fork workers.
>>   for (var i = 0; i < numCPUs; i++) {
>>     cluster.fork();
>>   }
>>
>>   cluster.on('exit', function(worker, code, signal) {
>>     console.log('worker ' + worker.process.pid + ' died');
>>   });
>> } else {
>>   // create server
>> }
>
>
> And I get this warning:
>
>> C:\Program Files\nodejs>node server.js
>> Warning: Native modules not compiled.  XOR performance will be degraded.
>> Warning: Native modules not compiled.  UTF-8 validation disabled.
>> Warning: Native modules not compiled.  XOR performance will be degraded.
>> Warning: Native modules not compiled.  UTF-8 validation disabled.
>> Warning: Native modules not compiled.  XOR performance will be degraded.
>> Server is listening on port 8080
>> Warning: Native modules not compiled.  XOR performance will be degraded.
>> Warning: Native modules not compiled.  UTF-8 validation disabled.
>> Warning: Native modules not compiled.  UTF-8 validation disabled.
>> Server is listening on port 8080
>> Warning: Native modules not compiled.  XOR performance will be degraded.
>> Warning: Native modules not compiled.  UTF-8 validation disabled.
>> Server is listening on port 8080
>> Server is listening on port 8080
>
>
> The program did what it warned.
> What is the possibility of the cause, and how to fix this.
> I use them on a Ubuntu 12.04 server and a windows 7 computer. The node
> version is 0.10.13.
> I also tested version 0.11.03 on both machine the windows one works fine but
> the linux.
>
> I love cluster and I don't want to ditch this. The version I would use is
> 0.10.13 because it's more stable.
> Thank you,

That warning is unrelated to the cluster module, it's generated by the
websocket module that you're using (and snipped from your example
code...)

-- 
-- 
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 [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/nodejs?hl=en?hl=en

--- 
You received this message because you are subscribed to the Google Groups 
"nodejs" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
For more options, visit https://groups.google.com/groups/opt_out.


Reply via email to