Redis 연결을 위한 PHP 메소드 코드

小云云
풀어 주다: 2023-03-20 20:28:01
원래의
3589명이 탐색했습니다.

PHP 프로그램에서 Redis를 사용하기 전에 Redis PHP 드라이버와 PHP 환경이 컴퓨터에 설치되어 있는지 확인해야 합니다. 먼저 컴퓨터에 PHP를 설치하고 환경을 구성할 수 있습니다. 이 글은 여러분에게 도움이 되기를 바라며 Redis에 연결되는 PHP의 메소드 코드를 공유할 것입니다.

설치

이제 Redis PHP 드라이버를 설정하는 방법을 살펴보겠습니다.
github 라이브러리 => http://github.com/nicolasff/phpredis에서 phpredis를 다운로드하세요. 다운로드한 후 phpredis 디렉터리에 파일을 추출합니다. Ubuntu에서는 다음 확장을 설치합니다.

cd phpredis 
sudo phpize 
sudo ./configure 
sudo make 
sudo make install
로그인 후 복사

이제 "modules" 폴더의 내용을 복사하여 PHP 확장 디렉토리에 붙여넣고 php.ini에 다음 줄을 추가하세요.

extension = redis.so
로그인 후 복사

이제 Redis PHP 설치가 완료되었습니다!

<?php 
   //Connecting to Redis server on localhost 
   $redis = new Redis(); 
   $redis->connect(&#39;127.0.0.1&#39;, 6379); 
   echo "Connection to server sucessfully"; 
   //check whether server is running or not 
   echo "Server is running: ".$redis->ping(); ?>
로그인 후 복사

PHP

를 사용하여 Redis 서버에 연결하면 프로그램이 실행되면 다음과 같은 결과가 생성됩니다.

Connection to server sucessfully 
Server is running: PONG
로그인 후 복사

Redis PHP 문자열 예제

<?php 
   //Connecting to Redis server on localhost 
   $redis = new Redis(); 
   $redis->connect(&#39;127.0.0.1&#39;, 6379); 
   echo "Connection to server sucessfully"; 
   //set the data in redis string 
   $redis->set("tutorial-name", "Redis tutorial"); 
   // Get the stored data and print it 
   echo "Stored string in redis:: " .$redis→get("tutorial-name"); ?>
로그인 후 복사

위 코드를 실행하면 다음과 같은 결과가 생성됩니다-

Connection to server sucessfully 
Stored string in redis:: Redis tutorial
로그인 후 복사

Redis php list example

<?php 
   //Connecting to Redis server on localhost 
   $redis = new Redis(); 
   $redis->connect(&#39;127.0.0.1&#39;, 6379); 
   echo "Connection to server sucessfully"; 
   //store data in redis list 
   $redis->lpush("tutorial-list", "Redis"); 
   $redis->lpush("tutorial-list", "Mongodb"); 
   $redis->lpush("tutorial-list", "Mysql");  

   // Get the stored data and print it 
   $arList = $redis->lrange("tutorial-list", 0 ,5); 
   echo "Stored string in redis:: "; 
   print_r($arList); ?>
로그인 후 복사

위 코드를 실행하면 다음과 같은 결과가 생성됩니다-

Connection to server sucessfully 
Stored string in redis:: Redis 
Mongodb 
Mysql
로그인 후 복사

Redis php 키 예제

<?php 
   //Connecting to Redis server on localhost 
   $redis = new Redis(); 
   $redis->connect(&#39;127.0.0.1&#39;, 6379); 
   echo "Connection to server sucessfully"; 
   // Get the stored keys and print it 
   $arList = $redis->keys("*"); 
   echo "Stored keys in redis:: " 
   print_r($arList); ?>
로그인 후 복사

실행 위 코드는 다음과 같은 결과를 생성합니다. -

Connection to server sucessfully 
Stored string in redis:: tutorial-name 
tutorial-list
로그인 후 복사

관련 권장 사항:

Redis의 PHP 작업 설명

php+redis 공유의 간단한 예

PHP에서 Redis의 일부 사용 방법

위 내용은 Redis 연결을 위한 PHP 메소드 코드의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!

관련 라벨:
원천:php.cn
본 웹사이트의 성명
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.
인기 튜토리얼
더>
최신 다운로드
더>
웹 효과
웹사이트 소스 코드
웹사이트 자료
프론트엔드 템플릿
회사 소개 부인 성명 Sitemap
PHP 중국어 웹사이트:공공복지 온라인 PHP 교육,PHP 학습자의 빠른 성장을 도와주세요!