Tagged Questions
1
vote
3answers
338 views
Why should I use node.js as http server?
I know what node.js is & what it does.
What I really want to know is how does it work as an http server?
A server like apache gets a request, fork a process, allocate memory to process, handle ...
0
votes
0answers
154 views
How can resolve an URL on a specific DNS server
I'm currently facing a issue on a project.
I'm resolving URL's on multiple DNS servers using a node.js server.
Until here, everything is fine.
But some ISP restrict the incoming requests from IPs ...
1
vote
2answers
1k views
Is it a right thing to do, to use Node.JS as a TCP Server? [closed]
Part I - The Story:
I have crafted a high performance TCP server in C# (based on SocketAsyncEventArgs) which works brilliantly (for my cause). I have more than 7000 clients, sending me a message ...
1
vote
1answer
306 views
2 Servers 1 Database - Can I use Redis?
Ok I have a couple of questions here. First let me give you some background information. I'm starting a project where I have a node.js server running my application and my website running on another ...
17
votes
2answers
6k views
Does Node.js actually increase scalability?
I've been reading about the C10K Problem, and of particular note is the part that refers to asynchronous server I/O. http://www.kegel.com/c10k.html#aio
I believe this pretty much summarises what ...