How to call redis cluster in php

(*-*)浩
Release: 2023-02-25 15:50:02
Original
2383 people have browsed it

There are two main redis extensions of php that we use at present:

How to call redis cluster in php

phpredis, which uses c An efficient extension of PHP; predis, which is written in PHP code and is used quite a lot.

phpredis (PHP extension) method (Recommended learning: PHP video tutorial)

1. phpredis stand-alone method

connect('10.30.5.163', '7000');
echo $client->get('new_item_key:d89b561fb759fd533a8c2781ef15dd5f');
Copy after login

phpredis cluster usage

get('new_item_key:d89b561fb759fd533a8c2781ef15dd5f');
Copy after login

Code description

Pass NULL for the first parameter. Don’t ask me, I don’t know why. Anyway, I couldn’t find the document, and I didn’t understand this article.

The second parameter is the list of master servers of the redis cluster we need to connect to. We have 3 masters, so just fill in 3. You can also fill in a master node, or even a slave node, but the performance is different. See Part 4

3. Cluster Principle

Why can redisCluster be operated by filling in any node address?

In cluster mode, when Redis receives any key-related command, it first calculates the slot corresponding to the key,

If the slave node is initialized, the redis command will be sent to the slave node first.

The slave node finds the corresponding node according to the slot. If the node is itself, the key command is processed;

If not itself, MOVED redirects an error, notifying the client to request the correct node. This process is called MOVED redirection

How to call redis cluster in php

The redirection information contains the slot corresponding to the key and the node address responsible for the slot. According to this information

The client can initiate a request to the correct node

The phpredis client can directly initiate a request to the node where the key is located based on the redirection information to obtain the data

Use predis cluster mode

'redis']);
echo $redis->get('new_item_key:d89b561fb759fd533a8c2781ef15dd5f')
Copy after login

The above is the detailed content of How to call redis cluster in php. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
php
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!