开发者

Which language is most suitable for an efficient web-crawler? [closed]

开发者_运维百科 As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, visit the help center for guidance. Closed 12 years ago.

i need to write an web crawler and i need need which is best language for performance like memory and performance ..

Edit: Original title was "which language is optimized for speed and perfomance c++ or C#"


i need to write an web crawler

In that case, the internet traffic is probably your bottleneck, so the language does not matter at all.


I'd say that, if you know what you're doing, C++ is more likely to be efficient than C#.

On the flip side, C# is probably easier to work with and to optimize your app in.

So, since you have to ask, I recommend C# in your case. ;)


C++ virtually always offers the best performance of any language that supports modern programming techniques like generic programming and OOP. You pay a price for this though - it's substantially harder to use than C#.


Of course C++. You can manage every byte of memory there, while C# is Managed Code, where you tell the framework what you want to do and the framework does the things you usually do in C++. But if that's the main motive - don't stop at C++ and get right to machine code, Assembly.


A Google search would give you an instant answer - C++ is (generally) a better performing language.

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜