Class: CacheZLib

(package) cache~CacheZLib

A static class for compressing and decompressing cache objects using zlib.

Since:
  • 2.0.0
Source:

Methods

(async, package, static) deflateCacheObject(obj) → {Promise.<Buffer>}

Compresses a JavaScript object using zlib deflate.

Parameters:
Name Type Description
obj Object

The object to be compressed.

Since:
  • 2.0.0
Source:
Throws:

If there is an error during compression.

Type
Error
Returns:

A promise that resolves with the compressed data as a Buffer.

Type
Promise.<Buffer>

(async, static) inflateCacheObject(deflatedObj) → {Promise.<Object>}

Inflates a deflated cache object.

Parameters:
Name Type Description
deflatedObj Record.<('type'|'data'), string>

The deflated cache object.

Properties
Name Type Description
type 'zlib/bin'

The type of the deflated object.

data string

The deflated data encoded as binary.

Source:
Throws:

If the type of the deflated object is invalid.

Type
InvalidTypeError
Returns:

A promise that resolves to the inflated cache object.

Type
Promise.<Object>