MimeCache Class

A memory cache that's used to retrieve often used file type extensions or MIME types faster.

Definition

Namespace: FolkerKinzel.MimeTypes
Assembly: FolkerKinzel.MimeTypes (in FolkerKinzel.MimeTypes.dll) Version: 1.0.0+7dd5ca03f25d4802263abb2083f9c7add2cb51ec
C#
public static class MimeCache
Inheritance
Object    MimeCache

Remarks

It's an expensive operation to parse the resources for MIME types and file type extensions. To overcome this issue, a small cache is is hold in memory to retrieve the most frequently used MIME types and file type extensions faster.

The cache is pre-populated with some of the most frequently used file type extensions and MIME types but it "learns" with every query and stores after some time only the data it is recently asked for. The cache doesn't exceed a given Capacity. The default value for this is DefaultCapacity, but you can enlarge the Capacity with EnlargeCapacity(Int32) if your application uses more than 16 different file types.

There is no way to reduce the Capacity, but you can Clear the whole cache. After that, the next time MimeCache is asked for data, it creates a new cache with the DefaultCapacity or a larger one, if you have called EnlargeCapacity(Int32) before.

Properties

Capacity Gets the current capacity of the cache.

Methods

Clear Clears the cache.
EnlargeCapacity Enlarges the Capacity of the cache to the specified value.

Fields

DefaultCapacity The default capacity of the cache.
DefaultFileTypeExtension The file type extension that is used as a fallback value.

Thread Safety

Static members of this type are safe for multi-threaded operations. Instance members of this type are safe for multi-threaded operations.

See Also