Shared Cache is high performance distributed and replication cache system built for .Net applications running in server farms.
Strategies for deflater

Namespace:  SharedCache.WinServiceCommon.SharpZipLib.Zip.Compression
Assembly:  SharedCache.WinServiceCommon (in SharedCache.WinServiceCommon.dll) Version: 3.0.5.1 (3.0.5.1)

Syntax

C#
public enum DeflateStrategy
Visual Basic (Declaration)
Public Enumeration DeflateStrategy
Visual C++
public enum class DeflateStrategy

Members

Member nameDescription
Default
The default strategy
Filtered
This strategy will only allow longer string repetitions. It is useful for random data with a small character set.
HuffmanOnly
This strategy will not look for string repetitions at all. It only encodes with Huffman trees (which means, that more common characters get a smaller encoding.

Remarks

[Missing <remarks> documentation for "T:SharedCache.WinServiceCommon.SharpZipLib.Zip.Compression.DeflateStrategy"]

See Also