Dealing with large media files? Like large images, videos, audio files? Are you having large CSS files and huge JS files to be stored and you think these files are eating your space and is also hindering your performance? Then BLOB caching will come as a savior. Let us understand our savior (BLOB Cache) in more detail.

What is BLOB Cache?

Let's start with the full form of it BLOB: Binary Large OBject. Having stated that, it's clear that a BLOB cache type will enable us to cache file types that are large in size. For example, media files, CSS files and so on. A BLOB cache will store the frequently used large files on the Web Front End Server's directory. This will ensure less traffic to the database servers. For this we will must enable the BLOB Cache on the Web Front End Server.

Apart from caching the large files, BLOB Cache supports other features like:

Note: If you are using Image Renditions, then BLOB Cache is the pre-requisite.

We can select the file types to be cached while configuring the BLOB Cache.

When to use a BLOB Cache

A BLOB Cache is recommended for the sites that:

Best practices around BLOB Cache

How to enable BLOB Cache

Reference