final class HashFieldExpirationCheck implements EnvironmentCheckInterface

Checks that hash-field expiration commands are available.

Any tag mode depends on Redis/Valkey hash-field expiration commands: HSETEX for tagged writes and HEXPIRE when plain touch updates tagged keys.

For all mode, this check is skipped (hash-field expiration is not needed).

Methods

__construct(RedisConnection $redis, string $taggingMode)

No description

string
name()

Get the human-readable name of this check.

run()

Run the check and return results.

string|null
getFixInstructions()

Get details about how to fix a failed check.

Details

at line 23
__construct(RedisConnection $redis, string $taggingMode)

No description

Parameters

RedisConnection $redis
string $taggingMode

at line 29
string name()

Get the human-readable name of this check.

Return Value

string

at line 34
CheckResult run()

Run the check and return results.

Return Value

CheckResult

at line 66
string|null getFixInstructions()

Get details about how to fix a failed check.

Returns null if no specific fix instructions are needed.

Return Value

string|null