Search Results

0
votes

Are there any performance benefits of using SQL Server 2008 over SQL Server 2005?

Yes. You can compress data in SQL 2008 which can have drastic impact on backup and data transfer times. …
1
vote

C++ performance vs. Java/C#

Actually, C# does not really run in a virtual machine like Java does. IL is compiled into assembly language, which is entirely native code and runs at the same speed as native code. You can pre-JIT …
2
votes

Load testing WCF service (hosted on IIS)

Start with this: http://www.codeplex.com/WCFLoadTest It doesn't do everything possible with WCF, but it is the best …
1
vote

How to speed up WPF programs?

WPF is meant for computers with modern graphics cards. Do your clients have modern graphics cards capable of running Aero? If your clients have older graphics cards, WPF will fall back to software …