O melhor tutorial PHP usar Redis em 2024. Neste tutorial você pode aprender instalar,A conexão ao serviço Redis,Redis PHP String (String) instância,Redis Lista PHP (lista) Exemplo,exemplos Redis PHP Chaves,

PHP usar Redis

instalar

Antes de começar a usar o Redis em PHP, é preciso garantir que os serviços e PHP instalado Redis Redis dirigir, e sua máquina pode usar o PHP normal. Vamos instalar o PHP Redis motorista: endereço Download: https://github.com/phpredis/phpredis/releases .

PHP extensão para instalar Redis

As ações a seguir precisará baixar os phpredis catálogo completo:

$ wget https://github.com/phpredis/phpredis/archive/2.2.4.tar.gz
$ cd phpredis-2.2.7                      # 进入 phpredis 目录
$ /usr/local/php/bin/phpize              # php安装后的路径
$ ./configure --with-php-config=/usr/local/php/bin/php-config
$ make && make install

Se você é versão PHP7, você precisa baixar o ramo especificado:

git clone -b php7 https://github.com/phpredis/phpredis.git

Modificar o arquivo php.ini

vi /usr/local/php/lib/php.ini

Adicione o seguinte:

extension_dir = "/usr/local/php/lib/php/extensions/no-debug-zts-20090626"

extension=redis.so

Após a instalação, reinicie php-fpm ou apache. Ver as informações phpinfo, você pode ver a extensão Redis.

PHP usar Redis

A conexão ao serviço Redis

<?php
    //连接本地的 Redis 服务
   $redis = new Redis();
   $redis->connect('127.0.0.1', 6379);
   echo "Connection to server sucessfully";
         //查看服务是否运行
   echo "Server is running: " . $redis->ping();
?>

Executar o script, a saída é:

Connection to server sucessfully
Server is running: PONG

Redis PHP String (String) instância

<?php
   //连接本地的 Redis 服务
   $redis = new Redis();
   $redis->connect('127.0.0.1', 6379);
   echo "Connection to server sucessfully";
   //设置 redis 字符串数据
   $redis->set("tutorial-name", "Redis tutorial");
   // 获取存储的数据并输出
   echo "Stored string in redis:: " . $redis->get("tutorial-name");
?>

Executar o script, a saída é:

Connection to server sucessfully
Stored string in redis:: Redis tutorial

Redis Lista PHP (lista) Exemplo

<?php
   //连接本地的 Redis 服务
   $redis = new Redis();
   $redis->connect('127.0.0.1', 6379);
   echo "Connection to server sucessfully";
   //存储数据到列表中
   $redis->lpush("tutorial-list", "Redis");
   $redis->lpush("tutorial-list", "Mongodb");
   $redis->lpush("tutorial-list", "Mysql");
   // 获取存储的数据并输出
   $arList = $redis->lrange("tutorial-list", 0 ,5);
   echo "Stored string in redis";
   print_r($arList);
?>

Executar o script, a saída é:

Connection to server sucessfully
Stored string in redis
Redis
Mongodb
Mysql

exemplos Redis PHP Chaves

<?php
   //连接本地的 Redis 服务
   $redis = new Redis();
   $redis->connect('127.0.0.1', 6379);
   echo "Connection to server sucessfully";
   // 获取数据并输出
   $arList = $redis->keys("*");
   echo "Stored keys in redis:: ";
   print_r($arList);
?>

Executar o script, a saída é:

Connection to server sucessfully
Stored string in redis::
tutorial-name
tutorial-list
PHP usar Redis
10/30