By tag: Performance
0
kicks
Optimising date filtered SQL queries
How you structure your SQL queries is very important and choosing the wrong approach can have big effects on the performance of the query.
This article shows the difference between an optimal query and a sub-optimal query resulting from subtle changes to the approach taken.
0
kicks
SQL Server 2008 - Table Valued Parameters
A performance walkthrough of passing a dynamic number of values to an stored procedure using the new table valued parameter support within SQL Server 2008, in comparison with XML and CSV parameter approaches.
0
kicks
High performance bulk loading to SQL Server using SqlBulkCopy
When bulk loading data to an SQL Server database, the SqlBulkCopy class is invaluable. This article compares the SqlBulkCopy approach against an SqlDataAdapter approach to demonstrate the difference in performance, and how to squeeze even more throughput out of the bulk load process.
0
kicks
Sorting a DataTable - LINQ performance
There are a number of ways to sort the data within a DataTable and this article compares 3 ways to find out what the performance difference is between the different approaches, and which offers the most scalable solution.
0
kicks
.NET CF Performance Best Practices
The impact of performance is much more readily apparent in .NET Compact Framework applications. The mobile devices commonly have a CPU that is 10 times slower than your desktop CPU, and possibly up to 100 times less RAM than a desktop or server. In Agile or XP development, the mantra is often to i...
0
kicks
7 tips for for loading Javascript rich Web 2.0-like sites super fast
When you create rich Ajax application, you use external JavaScript frameworks and you have your own homemade code that drives your application. The problem with well known JavaScript framework is, they offer rich set of features which are not always necessary in its entirety. You may end up using on...
0
kicks
Google's Page Speed tool for web developers - similar to YSlow
Google have announced some new tools and services for web developers.
0
kicks
Performance Comparisons (a Helper Class)
A little but handy helper class to run (small) performance tests.
0
kicks
System.String Vs System.Text
Strings of type System.String are immutable (read-only) in .NET because its value cannot be modified once it has been created. That means any change to a string causes the runtime to create a new string object and abandon the old one. That happens invisibly. Following code allocates three new string...
0
kicks
SQL Server 2008 Extended Events - high performance eventing system
Extended Events are the new low level, high performance eventing system in SQL Server. They use less system resources and provide better tracking of SQL Server performance than previous methods like Perfmon and SQL Trace/Profiler events.
0
kicks
Threading On Multi-Core CPUs
A comparison between performance improvement using concurrent threads on multiple CPUs
0
kicks
Data Transfer Using Self Hosted WCF Service
Hosting a WCF service to transfer streaming data using tcp sockets. The article describes how to tune a WCF service to handle large files and transfer them across the network using net tcp binding.
0
kicks
Exponentially Improve Performance to Start ASP.net 2.0, 3.0, 3.5 Debug
Stop the waiting when debugging your ASP.Net Web Applications! Here's a complete RAM Disk solution to save your sanity.
0
kicks
JQuery 1.3.2 Released with much better performance
The benefits of the new Sizzle selector engine are really starting to come to light as contributions from the larger JavaScript community come in. A number of additions have landed that have helped to improve the performance of the engine - especially in Internet Explorer.