আমি নোডেজ এবং আইআইএসের মধ্যে একটি প্রাথমিক পারফরম্যান্স পরীক্ষা করেছি। "হ্যালো! নীচে কোড।
আমার হার্ডওয়্যার: ডেল অক্ষাংশ E6510, কোর আই 5 (ডুয়াল কোর), 8 জিবি র্যাম, উইন্ডোজ 7 এন্টারপ্রাইজ 64 বিট ওএস
নোড সার্ভার
runs at http://localhost:9090/
/// <reference path="node-vsdoc.js" />
var http = require("http");
http.createServer(function (request, response) {
response.writeHead(200, { "Content-Type": "text/html" });
response.write("<p>hello, world!</p>");
response.end();
}).listen(9090);
default.htm
hosted by iis at http://localhost/test/
<p>hello, world!</p>
টাস্কের সমান্তরাল গ্রন্থাগারটি ব্যবহার করে আমার নিজস্ব বেঞ্চমার্ক প্রোগ্রাম:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Net;
using System.Threading;
using System.Threading.Tasks;
using System.Diagnostics;
namespace HttpBench
{
class Program
{
private int TotalCount = 100000;
private int ConcurrentThreads = 1000;
private int failedCount;
private int totalBytes;
private int totalTime;
private int completedCount;
private static object lockObj = new object();
/// <summary>
/// main entry point
/// </summary>
static void Main(string[] args)
{
Program p = new Program();
p.Run(args);
}
/// <summary>
/// actual execution
/// </summary>
private void Run(string[] args)
{
// check command line
if (args.Length == 0)
{
this.PrintUsage();
return;
}
if (args[0] == "/?" || args[0] == "/h")
{
this.PrintUsage();
return;
}
// use parallel library, download data
ParallelOptions options = new ParallelOptions();
options.MaxDegreeOfParallelism = this.ConcurrentThreads;
int start = Environment.TickCount;
Parallel.For(0, this.TotalCount, options, i =>
{
this.DownloadUrl(i, args[0]);
}
);
int end = Environment.TickCount;
// print results
this.Print("Total requests sent: {0}", true, this.TotalCount);
this.Print("Concurrent threads: {0}", true, this.ConcurrentThreads);
this.Print("Total completed requests: {0}", true, this.completedCount);
this.Print("Failed requests: {0}", true, this.failedCount);
this.Print("Sum total of thread times (seconds): {0}", true, this.totalTime / 1000);
this.Print("Total time taken by this program (seconds): {0}", true, (end - start) / 1000);
this.Print("Total bytes: {0}", true, this.totalBytes);
}
/// <summary>
/// download data from the given url
/// </summary>
private void DownloadUrl(int index, string url)
{
using (WebClient client = new WebClient())
{
try
{
int start = Environment.TickCount;
byte[] data = client.DownloadData(url);
int end = Environment.TickCount;
lock (lockObj)
{
this.totalTime = this.totalTime + (end - start);
if (data != null)
{
this.totalBytes = this.totalBytes + data.Length;
}
}
}
catch
{
lock (lockObj) { this.failedCount++; }
}
lock (lockObj)
{
this.completedCount++;
if (this.completedCount % 10000 == 0)
{
this.Print("Completed {0} requests.", true, this.completedCount);
}
}
}
}
/// <summary>
/// print usage of this program
/// </summary>
private void PrintUsage()
{
this.Print("usage: httpbench [options] <url>");
}
/// <summary>
/// print exception message to console
/// </summary>
private void PrintError(string msg, Exception ex = null, params object[] args)
{
StringBuilder sb = new System.Text.StringBuilder();
sb.Append("Error: ");
sb.AppendFormat(msg, args);
if (ex != null)
{
sb.Append("Exception: ");
sb.Append(ex.Message);
}
this.Print(sb.ToString());
}
/// <summary>
/// print to console
/// </summary>
private void Print(string msg, bool isLine = true, params object[] args)
{
if (isLine)
{
Console.WriteLine(msg, args);
}
else
{
Console.Write(msg, args);
}
}
}
}
এবং ফলাফল:
IIS: httpbench.exe http://localhost/test
Completed 10000 requests.
Completed 20000 requests.
Completed 30000 requests.
Completed 40000 requests.
Completed 50000 requests.
Completed 60000 requests.
Completed 70000 requests.
Completed 80000 requests.
Completed 90000 requests.
Completed 100000 requests.
Total requests sent: 100000
Concurrent threads: 1000
Total completed requests: 100000
Failed requests: 0
Sum total of thread times (seconds): 97
Total time taken by this program (seconds): 16
Total bytes: 2000000
nodejs: httpbench.exe http://localhost:9090/
Completed 10000 requests.
Completed 20000 requests.
Completed 30000 requests.
Completed 40000 requests.
Completed 50000 requests.
Completed 60000 requests.
Completed 70000 requests.
Completed 80000 requests.
Completed 90000 requests.
Completed 100000 requests.
Total requests sent: 100000
Concurrent threads: 1000
Total completed requests: 100000
Failed requests: 0
Sum total of thread times (seconds): 234
Total time taken by this program (seconds): 27
Total bytes: 2000000
উপসংহার: আইআইএস নোডেজের চেয়ে প্রায় 2.5 গুণ (উইন্ডোজে) দ্বারা দ্রুত। এটি একটি অত্যন্ত প্রাথমিক পরীক্ষা এবং কোনওভাবেই চূড়ান্ত নয়। তবে আমি বিশ্বাস করি এটি একটি ভাল সূচনা পয়েন্ট। নোডেজ সম্ভবত অন্যান্য ওয়েব সার্ভারগুলিতে, অন্যান্য প্ল্যাটফর্মে দ্রুত, তবে উইন্ডোজ আইআইএস-এ বিজয়ী। বিকাশকারীরা তাদের এএসপি.নেট এমভিসিকে নোডেজগুলিতে রূপান্তর করতে দেখছে তাদের এগিয়ে যাওয়ার আগে দু'বার বিরতি দেওয়া উচিত এবং চিন্তা করা উচিত।
আপডেট হয়েছে (5/17/2012) টমক্যাট (উইন্ডোতে) আইআইএসের হাতকে নীচে মারবে বলে মনে হচ্ছে, স্থির এইচটিএমএল ডিশ করার ক্ষেত্রে আইআইএসের চেয়ে প্রায় 3 গুণ বেশি দ্রুত।
হুল বিড়াল
index.html at http://localhost:8080/test/
<p>hello, world!</p>
টমক্যাট ফলাফল
httpbench.exe http://localhost:8080/test/
Completed 10000 requests.
Completed 20000 requests.
Completed 30000 requests.
Completed 40000 requests.
Completed 50000 requests.
Completed 60000 requests.
Completed 70000 requests.
Completed 80000 requests.
Completed 90000 requests.
Completed 100000 requests.
Total requests sent: 100000
Concurrent threads: 1000
Total completed requests: 100000
Failed requests: 0
Sum total of thread times (seconds): 31
Total time taken by this program (seconds): 5
Total bytes: 2000000
আপডেট উপসংহার: আমি একাধিকবার বেঞ্চমার্ক প্রোগ্রাম চালিয়েছি। টমক্যাট স্ট্যাটিক এইচটিএমএল, উইন্ডো থেকে ডিশ করার ক্ষেত্রে দ্রুততম সার্ভার হিসাবে উপস্থিত হয়।
আপডেট হয়েছে (5/18/2012) আগে আমার 10,000 সমবর্তী অনুরোধের সাথে 100,000 মোট অনুরোধ ছিল। আমি এটিকে 10,000,000 মোট চাহিদা এবং 100,000 একযোগে অনুরোধে বাড়িয়েছি। আইআইএস চিৎকারের বিজয়ী হিসাবে প্রকাশিত হয়েছে, নোডেজ সবচেয়ে খারাপ ফেয়ার করেছে। আমি নীচের ফলাফলগুলি সারণীকরণ করেছি:
।