This article mainly introduces how to configure the php client (phpredis) and connect to Redis. It has certain reference value. Now I share it with you. Friends in need can refer to it
Using php to connect to Redis, Memcache, etc. requires expansion. Taking CentOS as an example, we will introduce the client environment construction of phpredis.
Step 0: Preparation
Purchase 1 elastic cloud server ECS on Huawei Cloud (I chose CentOS 6.3), a distributed cache instance (DCS for Redis), I chose a stand-alone instance.
Note that the ECS and cache instances are configured with the same VPC and security group to ensure network interoperability.
Step one: Install gcc-c and make and other compilation components
## yum install gcc-c make
Step 2: Install the php development package and command line tools
Use yum to install directly.
yum install php-devel php-common php-cli
php -version

step01: Download phpredis Source file
## wget http://pecl.php.net/get/redis-4.1.0RC3.tgz
The above is the latest version. You can also go to the redis official website or the php official website to download other versions of the phpredis client
step02: Unzip after downloading
## cd redis-4.1.0RC3
step03: Execute the extended command before compilation
phpize
step04: Configuration
## ./configure --with-php-config= /usr/bin/php-config
Pay attention to the location of php-config. It is recommended to first search and confirm the directory of the php-config file. Different operating systems have different PHP installation method and file location are different.
Find / -name php-config
##step05: Compile and install
make && make install
step06: Pay attention to adding the redis module after installation. Reference configuration
vim /usr/local/php/etc/php.ini
Add the following configuration items, note that redis.so is the same You must first search for the confirmation file directory.
extension = "/usr/lib64/php/modules/redis.so"
Save and exit and confirm The extension takes effect:
php -m |grep redis
If the above command returns redis, congratulations You, the phpredis client environment is set up.

#Step 4: Script Test
Edit a redis.php file:
<?php
$redis_host = "{redis_instance_address}";
$redis_port = 6379;
$user_pwd = "{password}";
$redis = new Redis();
if ($redis->connect($redis_host, $redis_port) == false) {
die($redis->getLastError());
}
if ($redis->auth($user_pwd) == false) {
die($redis->getLastError());
}
if ($redis->set("welcome", "Hello, DCS for Redis!") == false) {
die($redis->getLastError());
}
$value = $redis->get("welcome");
echo $value;
$redis->quit();
?>Execute php redis.php, you will find that you can normally connect to the cache instance and perform data operations~

ps:
1. If an error is reported after execution, the configuration is incorrect;
2. If there is no response after execution, the network may be blocked. Check the IP address and port, and then confirm whether the VPC and security group of the ECS and cache instance are consistent. If they are inconsistent, you need to establish a VPC peering connection or modify the security Group, for details, please view the Virtual Private Cloud Service and Distributed Cache Service in the Help Center.
The above is the entire content of this article. I hope it will be helpful to everyone's study. For more related content, please pay attention to the PHP Chinese website!
Related recommendations:
Use PHPstudy to deploy the PHP system under Windows server
PHP method to obtain the client’s real IP address
The above is the detailed content of How to configure php client (phpredis) and connect to Redis. For more information, please follow other related articles on the PHP Chinese website!
Laravel routing parameter delivery and controller method definition: Avoiding common errors and best practicesJul 23, 2025 pm 07:27 PMThis tutorial details the correct method of parameter passing in Laravel routing, and corrects common errors in writing parameter placeholders into controller method names. The article provides examples of standardized routing definitions and controller methods, and emphasizes that deletion operations should prioritize the use of HTTPDELETE methods to enhance routing semantics and maintainability.
Guide to matching Laravel routing parameter passing and controller methodJul 23, 2025 pm 07:24 PMThis article aims to resolve common errors in the Laravel framework where routing parameter passing matches controller methods. We will explain in detail why writing parameters directly to the controller method name in the routing definition will result in an error of "the method does not exist", and provide the correct routing definition syntax to ensure that the controller can correctly receive and process routing parameters. In addition, the article will explore best practices for using HTTPDELETE methods in deletion operations.
How to use PHP to develop a Q&A community platform Detailed explanation of PHP interactive community monetization modelJul 23, 2025 pm 07:21 PM1. The first choice for the Laravel MySQL Vue/React combination in the PHP development question and answer community is the first choice for Laravel MySQL Vue/React combination, due to its maturity in the ecosystem and high development efficiency; 2. High performance requires dependence on cache (Redis), database optimization, CDN and asynchronous queues; 3. Security must be done with input filtering, CSRF protection, HTTPS, password encryption and permission control; 4. Money optional advertising, member subscription, rewards, commissions, knowledge payment and other models, the core is to match community tone and user needs.
Efficiently use JSON data to implement cascading drop-down menus in Laravel Blade templatesJul 23, 2025 pm 07:18 PMThis article details how to load a local JSON file in a Laravel application and pass its data to a Blade template. By processing JSON parsing by the controller, the view layer uses Blade's @foreach instruction to traverse the data, thereby realizing dynamically generating drop-down menus. In particular, the article also explores in-depth how to combine JavaScript to implement multi-level linkage drop-down menu functions to provide users with dynamic content display based on selection, and provides practical code examples and precautions for implementing such interactions.
Deep analysis of matching Laravel routing parameter transfer and controller methodJul 23, 2025 pm 07:15 PMThis article deeply explores the correct transmission of routing parameters and the matching mechanism of controller methods in the Laravel framework. In response to the common "method does not exist" error caused by writing routing parameters directly to the controller method name, the article elaborates on the correct way to define routing, that is, declare parameters in the URI and receive them as independent parameters in the controller method. At the same time, the article also provides code examples and suggestions on best practices for HTTP methods, aiming to help developers build more robust and RESTful Laravel applications.
PHP integrated AI intelligent image processing PHP image beautification and automatic editingJul 23, 2025 pm 07:12 PMPHP integrated AI image processing requires the help of a third-party API or local model, which cannot be directly implemented; 2. Use ready-made services such as Google CloudVision API to quickly realize facial recognition, object detection and other functions. The advantages are fast development and strong functions. The disadvantages are that they need to pay, rely on the network and have data security risks; 3. Deploy local AI models through PHP image library such as Imagick or GD combined with TensorFlowLite or ONNXRuntime. It can be customized, the data is safer, and the cost is low, but the development is difficult and requires AI knowledge; 4. Mixed solutions can combine the advantages of API and local model, such as using API for detection and beautification of local models; 5. Selecting AI image processing API should be comprehensive
Twilio Voice Call Maintenance and Recovery: Meeting Functions and Independent Call Leg Management PracticeJul 23, 2025 pm 07:09 PMThis article discusses in-depth two main strategies for realizing voice call holding (Hold) and recovery (Unhold) on the Twilio platform. First, we introduce the detailed introduction to leveraging the Twilio Conference feature to easily manage call retention by updating the Participant resources, and provide corresponding code examples. Second, for scenarios where more detailed control of independent call legs (CallLeg) is required, how to combine TwiML instructions (such as and/) to handle call reconnection, while highlighting the complexity of this approach. The article aims to provide professional and practical guidance to help developers choose the most suitable implementation solution according to specific needs.
Laravel routing parameter passing: correctly define the controller method and routing bindingJul 23, 2025 pm 07:06 PMThis article discusses the correct posture of parameter transfer of controller method in Laravel routing in depth. In response to common errors caused by writing routing parameters directly to the controller method name, the correct routing definition syntax is explained in detail, and the mechanism of Laravel automatic parameter binding is emphasized. At the same time, the article recommends using HTTPDELETE method that is more in line with RESTful specifications to handle deletion operations to improve the maintainability and semantics of the application.


Hot AI Tools

Undress AI Tool
Undress images for free

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Clothoff.io
AI clothes remover

Video Face Swap
Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Article

Hot Tools

SublimeText3 Chinese version
Chinese version, very easy to use

WebStorm Mac version
Useful JavaScript development tools

SecLists
SecLists is the ultimate security tester's companion. It is a collection of various types of lists that are frequently used during security assessments, all in one place. SecLists helps make security testing more efficient and productive by conveniently providing all the lists a security tester might need. List types include usernames, passwords, URLs, fuzzing payloads, sensitive data patterns, web shells, and more. The tester can simply pull this repository onto a new test machine and he will have access to every type of list he needs.

SublimeText3 Mac version
God-level code editing software (SublimeText3)

ZendStudio 13.5.1 Mac
Powerful PHP integrated development environment








