CentOS9 redis 설치 및 cache

layl__a·2022년 9월 13일
0

CentOS9

목록 보기
6/6

redis 설치

sudo yum install redis -y 

redis 실행

sudo systemctl start redis
sudo systemctl enable redis  ```

문제 : php로 cache 요청하기

일반 php

vim long_term_file_cache.php
<?php
function f1() {
        sleep(5); // 5초 쉰다.

        return 100;
}
?>
Result : <?=f1()?>

redis

0개의 댓글