Stories recently tagged with 'Performance' Subscribe to this feed

.NET CF Performance Best Practices (jsprunger.com)

submitted by daymandayman(35) 19 hours, 37 minutes ago

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 ignore performance considerations until necessary – I don’t think you can apply that to .NET CF... read more...

add a comment | category: | Views: 4

tags: another

7 tips for for loading Javascript rich Web 2.0-like sites super fast (msmvps.com)

submitted by oazabiroazabir(1530) 2 months, 28 days ago

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 only 30% of jQuery but you still download the full jQuery framework. So, you are downloading 70% unnecessary scripts. Similarly, you might have written your own javascripts which are not always used. There might be features which are not used when the site loads for the first time, resulting in unnecessary download during initial load. Initial loading time is crucial – it can make or break your website. We did some analysis and found that every 500ms we added to initial loading, we lost approx 30% traffic who never wait for the whole page to load and just close browser or go away. So, saving initial loading time, even by couple of hundred milliseconds, is crucial for survival of a startup, especially if it’s a Rich AJAX website. read more...

add a comment | category: | Views: 23

tags: another

Google's Page Speed tool for web developers - similar to YSlow (nimtug.org)

submitted by dmcgivdmcgiv(365) 5 months, 29 days ago

Google have announced some new tools and services for web developers. read more...

add a comment | category: | Views: 17

tags: another

Performance Comparisons (a Helper Class) (winsharp93.wordpress.com)

submitted by winSharp93winSharp93(235) 6 months, 6 days ago

A little but handy helper class to run (small) performance tests. read more...

add a comment | category: | Views: 7

tags: another

System.String Vs System.Text (programming360.blogspot.com)

submitted by syedtayyabalisyedtayyabali(125) 6 months, 27 days ago

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 strings in memory: Example: string str = "This is Programming360 Blog. "; str += "It educate technical communities. "; str += "It believes, one concept at a time..."; Only the last string has a reference; the other two will be disposed of during garbage collection. Avoiding these types of temporary strings helps avoid unnecessary garbage collection, which improves performance. There are several ways to avoid temporary strings: * Use the String class's Concat, Join, or Format methods to join multiple items in a single statement. * Use the StringBuilder class to create dynamic (mutable) strings. The StringBuilder solution is the most flexible because it can span multiple statements. The default constructor creates a buffer 16 bytes long, which grows as needed. You can specify an initial size and a maximum size if you like. Example: System.Text.StringBuilder sb = new System.Text.StringBuilder(); sb.Append("This is Programming360 Blog. "); sb.Appen("It educate technical communities. ";); sb.Appen("It believes, one concept at at time..."); read more...

add a comment | category: | Views: 21

tags: another

SQL Server 2008 Extended Events - high performance eventing system (weblogs.sqlteam.com)

submitted by spirit1spirit1(3140) 8 months, 11 days ago

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. read more...

1 comment | category: | Views: 14

tags: another

Linq Filters On Lists (csharp-codesamples.com)

submitted by rohanwarangrohanwarang(80) 10 months, 19 days ago

When and how to use linq to filter Collections read more...

add a comment | category: | Views: 23

tags: another

Threading On Multi-Core CPUs (csharp-codesamples.com)

submitted by rohanwarangrohanwarang(80) 10 months, 19 days ago

A comparison between performance improvement using concurrent threads on multiple CPUs read more...

add a comment | category: | Views: 18

tags: another

Data Transfer Using Self Hosted WCF Service (csharp-codesamples.com)

submitted by rohanwarangrohanwarang(80) 10 months, 19 days ago

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. read more...

add a comment | category: | Views: 81

tags: another

Exponentially Improve Performance to Start ASP.net 2.0, 3.0, 3.5 Debug (it.toolbox.com)

published 11 months, 3 days ago, submitted by dotnetdudedotnetdude(220) 11 months, 3 days ago

Stop the waiting when debugging your ASP.Net Web Applications! Here's a complete RAM Disk solution to save your sanity. read more...

1 comment | category: | Views: 564

tags: another

JQuery 1.3.2 Released with much better performance (docs.jquery.com)

published 11 months, 18 days ago, submitted by dmcgivdmcgiv(365) 11 months, 19 days ago

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. read more...

add a comment | category: | Views: 424

tags: another

Looking for database performance bottlenecks of a web site (blog.bodurov.com)

submitted by vladibovladibo(40) 11 months, 21 days ago

How to use Fiddler and SQL Server Profiler to look for database performance bottlenecks read more...

add a comment | category: | Views: 5

tags: another

Web Performance: AXD files compression. (blogs.microsoft.co.il)

submitted by yevgenifyevgenif(115) 11 months, 24 days ago

Data compression tweaks for IIS read more...

add a comment | category: | Views: 9

tags: another

SQL SERVER - Rules for Optimizining Any Query - Best Practices (blog.sqlauthority.com)

published 1 year ago, submitted by pinaldavepinaldave(6378) 1 year ago

This subject is very deep subject but today we will see it very quickly and most important points. May be following up on few of the points of this point will help users to right away improve the performance of query. In this article I am not focusing on in depth analysis of database but simple tricks which DBA can apply to gain immediate performance gain. read more...

4 comments | category: | Views: 617

tags: another

How to Calculate Network Utilization in .NET (nayyeri.net)

published 1 year ago, submitted by niikniik(345) 1 year ago

How to calculate utilization of a particular network interface in .NET using performance counters and a bit of math. read more...

add a comment | category: | Views: 440

tags: another

Creating high performance WCF services (weblogs.asp.net)

submitted by JemmJemm(9400) 1 year, 1 month ago

"I had a WCF service where I wanted to be able to support over a hundred concurrent users, and while most of the service methods had small payloads which returned quickly, the startup sequence needed to pull down 200,000 records. The out of the box WCF service had no ability to support this scenario, but with some effort I was able to squeeze orders of magnitude performance increases out of the service and hit the performance goal." read more...

add a comment | category: | Views: 173

tags: another