For transparency and searchability.
[19-Apr-2026 01:06:04 UTC] protocol error, got 'O' as reply type byte
[19-Apr-2026 01:06:04 UTC] protocol error, got 'a' as reply type byte
[19-Apr-2026 01:06:04 UTC] protocol error, got '
[19-Apr-2026 01:06:04 UTC] protocol error, got '
[19-Apr-2026 01:06:04 UTC] protocol error, got 'm' as reply type byte
final class Kaboom {
public function __wakeup(): void {
global $redis;
$redis->pipeline();
$redis->mget(['payload']);
$redis->exec();
}
}
$redis = new Redis(['host' => 'localhost', 'port' => 6379]);
$redis->setOption(Redis::OPT_SERIALIZER, Redis::SERIALIZER_PHP);
$redis->mset(['string:1' => 'foo', 'payload' => new Kaboom()]);
$redis->mget(['payload', 'string:1']);
For transparency and searchability.