How to compress a .net object instance using gzip. - Stack Overflow most recent 30 from stackoverflow.com2009-12-19T12:14:42Zhttp://stackoverflow.com/feeds/question/964697http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/964697/how-to-compress-a-net-object-instance-using-gzip1How to compress a .net object instance using gzip.Matt Peters2009-06-08T12:33:19Z2009-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#9647008Answer by Mehrdad Afshari for How to compress a .net object instance using gzip.Mehrdad Afshari2009-06-08T12:34:50Z2009-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#9647661Answer by Marc Gravell for How to compress a .net object instance using gzip.Marc Gravell2009-06-08T12:51:34Z2009-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>