From 7a858a6f80639141ca739d43ec14730890e80767 Mon Sep 17 00:00:00 2001 From: 3x0k1d <3x0k1d@gmail.com> Date: Mon, 5 May 2025 07:05:36 +0300 Subject: [PATCH] redis complete --- checkers/php-redis.php | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/checkers/php-redis.php b/checkers/php-redis.php index 0209a39..479f4fd 100644 --- a/checkers/php-redis.php +++ b/checkers/php-redis.php @@ -1,4 +1,17 @@ Module name: phpredis'); +echo ('
+This PHP script check a basic feauteres of the phpredis extension: +=> Create a Redis client +=> Connect to a Redis server(Connection data in the script itself) +=> Stores a key-value pair (foo = bar) +=> Retrieves and displays the stored value +
'); + + $redis = new Redis(); $redis->connect('127.0.0.1', 6379); $redis->set('foo', 'bar');