Step 1: Install Redis Server
BASH:
You must log in to view
(1 lines)
Open file
etc/redis/redis.conf
Find and change the following 2 parameters:
Code:
You must log in to view
(2 lines)
Restart:
BASH:
You must log in to view
(1 lines)
Step 2: Enable Redis Cache for Xenforo 2
Open file
src/config.php
Add the following code at the end:
PHP:
You must log in to view
(8 lines)
Remember to change yourpassword to the password set in step 1.
Done.!
Read more:
Cách Thiết Lập Cache Cho Xenforo 2 - How To Set Up Cache For Xenforo 2
Thiết lập xenforo 2 cache giúp tiết kiệm thời gian xử lý và truy vấn cơ sở dữ liệu, giúp diễn đàn của chúng ta load nhanh hơn. Cấu hình cache được lưu trong tệp src/config.php.
Xenforo hỗ trợ nhiều loại cache khác nhau. Ở đây tôi sẽ hướng dẫn bạn 2 loại cache thông dụng nhất, và dễ thực hiện nhất.
Setting up xeforo 2 cache saves time in processing and querying the database, making our forum load faster. The cache configuration is stored in the src/config.php file.
Xenforo...