How to compress a .net object instance using gzip. - Stack Overflow most recent 30 from stackoverflow.com 2009-12-19T12:14:42Z http://stackoverflow.com/feeds/question/964697 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/964697/how-to-compress-a-net-object-instance-using-gzip 1 How to compress a .net object instance using gzip. Matt Peters 2009-06-08T12:33:19Z 2009-06-08T12:51:34Z <p>I am wanting to compress results from QUERYS of the database before adding them to the cache.</p> <p>I want to be able to compress any reference type.</p> <p>I have a working version of this for compressing strings.. the idea based on scott hanselman 's blog post <a href="http://shrinkster.com/173t" rel="nofollow">http://shrinkster.com/173t</a> </p> <p>any ideas for compressing a .net object?</p> <p>I know that it will be a read only cache since the objects in the cache will just be byte arrays..</p> http://stackoverflow.com/questions/964697/how-to-compress-a-net-object-instance-using-gzip/964700#964700 8 Answer by Mehrdad Afshari for How to compress a .net object instance using gzip. Mehrdad Afshari 2009-06-08T12:34:50Z 2009-06-08T12:43:07Z <p>This won't work for <strong>any</strong> reference type. This will work for <strong>Serializable</strong> types. Hook up a <code>BinaryFormatter</code> to a compression stream which is piped to a file:</p> <pre><code>var formatter = new BinaryFormatter(); using (var outputFile = new FileStream("OutputFile", FileMode.CreateNew)) using (var compressionStream = new GZipStream( outputFile, CompressionMode.Compress)) { formatter.Serialize(compressionStream, objToSerialize); compressionStream.Flush(); } </code></pre> <p>You could use a <code>MemoryStream</code> to hold the contents in memory, rather than writing to a file. I doubt this is really an effective solution for a cache, however.</p> http://stackoverflow.com/questions/964697/how-to-compress-a-net-object-instance-using-gzip/964766#964766 1 Answer by Marc Gravell for How to compress a .net object instance using gzip. Marc Gravell 2009-06-08T12:51:34Z 2009-06-08T12:51:34Z <p>What sort of objects are you putting in the cache? Are they typed objects? Or things like <code>DataTable</code>? For <code>DataTable</code>, then perhaps store as xml compressed through <code>GZipStream</code>. For typed (entity) objects, you'll probably need to serialize them.</p> <p>You could use <code>BinaryFormatter</code> and <code>GZipStream</code>, or you could just use something like <a href="http://code.google.com/p/protobuf-net/" rel="nofollow">protobuf-net</a> serialization (free) which is already very compact (adding <code>GZipStream</code> typically makes the data <em>larger</em> - which is typical of dense binary). In particular, the advantage of things like protobuf-net is that you get the reduced size without having to pay the CPU cost of unzipping it during deserialization. In <a href="http://code.google.com/p/protobuf-net/wiki/Performance" rel="nofollow">some tests</a> <em>before</em> adding <code>GZipStream</code>, it was 4 times faster than <code>BinaryFormatter</code>. Add the extra time onto <code>BinaryFormatter</code> for GZip and it should win by a <em>considerable</em> margin.</p>