58
votes
32answers
4k views
When is assembler faster than C?
One of the stated reasons for knowing assembler is that, on occasion, it can be employed to write code that will be more performant than writing that code in a higher-level languag …
0
votes
1answer
21 views
Ajax PageMethods Vs XMLHTTP
Hi guys,
i have a case where when the user closes the browser window i have to set an Application Object to null...and for this i will use the JavaScript onbeforeUnload to do the …
5
votes
6answers
171 views
Performance of 32-bit integers in a 64-bit environment (C++)
We've started compiling both 32- and 64-bit versions of some of our applications. One of the guys on my project is encouraging us to switch all of our 32-bit integers to their 64- …
2
votes
19answers
6k views
What’s faster? PHP vs ASP vs JSP vs CGI etc
I'm looking for some metrics. I'm currently tech-editing a book in which the author boldly states that "ASP executes faster than CGI and Perl". It's not backed up by any sources or …
2
votes
24answers
1k views
Is C faster than C++?
I've heard many opinions on this subject, but never saw any good proofs that C is faster than C++. So, ...is C faster than C++?
EDIT: This is a Runtime comparison.
0
votes
3answers
45 views
Declare converters in the application.xaml or in individual files?
What should be the best practice to declare the converters:
Declare ALL my converters in the app.xaml (i.e. in <Application.Resources/>) so it's available in the entire app …
5
votes
3answers
235 views
What’s a good multi-core 64-bit “Hello World” program?
I recently got my home PC upgraded to a quad-core CPU and 64-bit OS. I have some former experience with C/C++ and I'm really "itching" to try exercising some 64-bit CPU capabilitie …
0
votes
1answer
13 views
Deploy view or use function for lookup
I've two master tables Org & Item and then there's an OrgItem table.I have to fetch ItemCodes for a particular Org.
TABLE STRUCTURE:
Org ( Id, OrgCode, Name) - Org Master ta …
0
votes
4answers
299 views
How much more performant is Postgres than MYSQL on fulltext search?
I've been a MYSQL user,never tried Postgres .
But MYSQL has bottle neck on fulltext search when the data set is huge.
0
votes
0answers
87 views
Looking for CDN Comparison [closed]
I can't seem to find a good performance comparison of different CDN services, like CloudFront, Limelight etc. Anyone's got a good link?
2
votes
2answers
124 views
How to pause Garbage Collection in .NET?
I'm running some performance tests on some .NET code that processes lots of data. I want some tests that ensure the garbage collector isn't influencing my results. How do I tempo …
0
votes
3answers
31 views
Target mysql query response times
As I'm looking to optimize some of my mysql queries and improve performance, I'm realizing that I'm just not sure what sort of response times I should be aiming for.
Obviously low …
0
votes
2answers
96 views
Regular Expression vs XML Functions in PHP
Hiya,
I currently do alot of data parsing, and have toyed with PHP functions for XML such as simple XML and a few others here and there.
But there always seems to be some sort of …
0
votes
2answers
39 views
Retrieval performance for k-means and KSOM
In k-means and KSOM (Kohonen's Self Organizing Map), which one gives the better retrieval performance? And how to calculate that performance?
0
votes
1answer
98 views
32bit vs 64bit performance
I have a .NET assembly(3.5 framework) and it basically has a set of custom controls which does a lot of things like plotting points and stuff like that. The assembly is compiled as …
