DotNetShoutout - Stories tagged with Compression
2
Shouts

Configuring Bundles in MVC 4

published 410 days, 2 hours, 11 minutes ago posted by tduponttdupont 413 days, 19 hours, 9 minutes ago
Wednesday, April 04, 2012 10:04:00 AM GMT Saturday, March 31, 2012 5:05:53 PM GMT
The bundling, compression, and minification of JavaScript is important to the speed and performance of modern websites. This is why I was so excited to hear that such features were (finally) coming built in to ASP.NET MVC 4. Introducing MvcBundleConfig: a project that adds configuration and debugging features to MVC 4's bundling framework, and meets the needs and wants of a good minification framework. (more)
category: Web Dev | clicked: 40 | comment | | source: www.tomdupont.net
tags: Bundle, Combres, Compression, JavaScript, MvcBundleConfig, CSS, minification, MVC, MVC4
3
Shouts

Making the most out of IIS compression - Part 1: IIS 7 configuration

posted by sonukapoorsonukapoor 663 days, 10 hours, 40 minutes ago
Tuesday, July 26, 2011 1:35:09 AM GMT
Starting with this article, I'll show how to get the most out of the compression features built into IIS 7 and IIS 6. This first article focuses specifically on IIS 7. (more)
category: Web Dev | clicked: 3 | 1 comment | | source: dotnetslackers.com
tags: Compression, IIS
4
Shouts

ASP.NET GZip Encoding Caveats - Rick Strahl's Web Log

published 745 days, 23 hours, 21 minutes ago posted by iftekharahmedamitiftekharahmedamit 747 days, 23 hours, 47 minutes ago
Wednesday, May 04, 2011 12:54:12 PM GMT Monday, May 02, 2011 12:27:37 PM GMT
GZip encoding in ASP.NET is pretty easy to accomplish using the built-in GZipStream and DeflateStream classes and applying them to the Response.Filter property.  While applying GZip and Deflate behavior is pretty easy there are a few caveats that you have watch out for as I found out today for myself with an application that was throwing up some garbage data. But before looking at caveats let’s review GZip implementation for ASP.NET.ASP.NET GZip/Deflate Basics Response filters basically are applied to t... (more)
category: Web Dev | clicked: 2 | 1 comment | | source: www.west-wind.com
tags: GZip, Compression, encoding, ASP.NET
5
Shouts

Enabling dynamic compression (gzip, deflate) for WCF Data Feeds, OData and other custom services in IIS7 - Scott Hanselman

published 780 days, 15 hours, 8 minutes ago posted by iftekharahmedamitiftekharahmedamit 780 days, 22 hours, 50 minutes ago
Wednesday, March 30, 2011 9:07:17 PM GMT Wednesday, March 30, 2011 1:24:53 PM GMT
I'm working on a thing that uses an HttpWebRequest to talk to a backend WCF Data Service and it'd be ideal if the traffic was using HTTP Compression (gzip, deflate, etc). On the client side, it's easy to just add code like thisrequest.AutomaticDecompression = DecompressionMethods.GZip | DecompressionMethods.Deflate or more manuallyvar request = HttpWebRequest.Create("http://foofoo"); request.Headers["Accept"] = "application/json"; request.Headers["Accept-Encoding"] = "gzip, deflate"; However, you n... (more)
category: Web Dev | clicked: 22 | 1 comment | | source: www.hanselman.com
tags: IIS7, Compression, WCF, OData
4
Shouts

Compression Using DeflateStream and GZipStream

published 858 days, 17 hours, 51 minutes ago posted by JudoJudo 859 days, 6 hours, 33 minutes ago
Tuesday, January 11, 2011 6:23:59 PM GMT Tuesday, January 11, 2011 5:41:59 AM GMT
The .NET System.IO.Compression namespace provides two general purpose compressions streams –  DeflateStream and GZipStream. Both these compressions streams use popular compression algorithm which is similar to that used by the ZIP format. The difference is that GZipStream writes an additional protocol at the start and at the end which includes a CRC to detect  errors. The GZipStream also conforms to a standard recognized by other software. Both DeflateStream and  GZipStream allow reading and writing, w... (more)
category: Architecture | clicked: 1 | comment | | source: www.csharphelp.com
tags: DeflateStream, Compression, GZipStream
2
Shouts

Compress and Decompress data using GZipStream

posted by dotnetsparkdotnetspark 1123 days, 10 hours, 15 minutes ago
Thursday, April 22, 2010 2:00:26 AM GMT
In this article we will see how to Compress the data with GZipStream Class of .net (more)
category: Web Dev | clicked: 1 | comment | | source: www.dotnetspark.com
tags: GZip, Compression, DotNetSpark
5
Shouts

SQL Server Backup Compression Software - SQL Backup Compression Tools

published 1170 days, 21 hours, 41 minutes ago posted by eralpereralper 1172 days, 2 hours, 35 minutes ago
Friday, March 05, 2010 2:33:53 PM GMT Thursday, March 04, 2010 9:40:13 AM GMT
SQL Server Backup Compression Software - SQL Backup Compression Tools After the release of Microsoft SQL Server 2008, sql database administrators (DBA's) and sql developers have acquired a new tool for SQL Se... (more)
category: Data | clicked: 1 | comment | | source: www.kodyaz.com
tags: SQL Server, SQL Server 2008 Backup, sql backup, SQL Server 2008, backup, data compression, Compression, backup compression
12
Shouts

Configuring Data Compression – SQL Server 2008 – Part 4

published 1266 days, 16 hours, 30 minutes ago posted by sqlarticlessqlarticles 1268 days, 7 hours, 8 minutes ago
Sunday, November 29, 2009 7:45:00 PM GMT Saturday, November 28, 2009 5:07:31 AM GMT
In this article we are going to configure Data compression in SQL Server 2008. Configuring data compression is very easy with just an couple of steps. The steps are below Estimate the Compression Ratio (Optional) Configure Data Compression (more)
category: Data | clicked: 1 | 1 comment | | source: www.sql-articles.com
tags: data compression, sqlarticles, Compression