vote up 3 vote down star
3

Does anyone have any experience in using compression on their cached data? I understand that stackoverflow is internally using this method.

What are the pros and cons?

And are there any gotchyas?

flag

50% accept rate

2 Answers

vote up 3 vote down check

Scott Hanselman just created a Session wrapper class that can zip items before putting them into your cache/session/whatever. You may want to take a look!

http://www.hanselman.com/blog/TheWeeklySourceCode35ZipCompressingASPNETSessionAndCacheState.aspx

link|flag
Thanks for the link, great to compare implementations – Harry Oct 23 '08 at 1:37
Hanselman notes that you can get data expansion from the built-in DeflateStream (or GZipStream, whatever he used). As I have posted elsewhere, this is a known anomaly. connect.microsoft.com/VisualStudio/feedback/… You need a different stream to avoid it. – Cheeso Mar 6 at 16:29
vote up 1 vote down

you should try memcached. It's a distributed caching server that is easy to use and provides impressive compression capabilities.

link|flag
Is memcached worth while if only using a single server? – Harry Oct 23 '08 at 1:38

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.