이전에는 PHP 캐싱 기술에 대해 심도있게 다루었는데 주로 데이터 캐싱에 대해 언급했습니다. 데이터 캐싱은 주로 데이터베이스 쿼리 캐싱을 의미하며, 페이지에 접근할 때마다 해당 캐시된 데이터가 존재하는지 먼저 감지하고, 존재하지 않는 경우 데이터베이스에 연결하여 데이터를 가져와서 쿼리 결과를 완성합니다.
앞서 PHP 캐싱 기술에 대해 심도있게 다루었는데 주로 데이터 캐싱을 언급했습니다. 데이터 캐싱은 주로 데이터베이스 쿼리 캐싱을 의미하며, 페이지에 접근할 때마다 해당 캐시된 데이터가 존재하는지 먼저 감지하고, 존재하지 않는 경우에는 데이터베이스에 연결하여 데이터를 얻고, 쿼리 결과를 직렬화하여 저장합니다. 동일한 쿼리 결과를 캐시 테이블이나 파일에서 직접 가져옵니다.
가장 널리 사용되는 예는 Discuz의 검색 기능으로, 다음에 동일한 키워드를 검색할 때 결과 ID를 테이블에 캐시하고 캐시 테이블을 먼저 검색하는 기능입니다.
일반적인 방법으로는 여러 테이블을 연관시킬 때 첨부된 테이블의 내용을 생성하여 메인 테이블의 필드에 배열로 저장하는 방식인데, 이 방식의 장점은 다음과 같습니다. 하나의 테이블만 읽을 수 있다는 점과 두 데이터를 동기화하는 데 더 많은 단계가 필요하다는 점입니다. 데이터베이스는 항상 속도를 위해 병목 현상을 발생시킵니다.
페이지 캐시
페이지에 액세스할 때마다 해당 캐시된 페이지 파일이 있는지 먼저 감지합니다. 존재하지 않는 경우 데이터베이스에 연결하여 데이터를 가져오고 표시합니다. 페이지를 생성하고 동시에 캐시된 페이지 파일을 생성하면 다음에 방문할 때 페이지 파일이 재생됩니다. (템플릿 엔진과 인터넷에 있는 일부 일반적인 캐시 클래스에는 일반적으로 이 기능이 있습니다.)
시간 트리거 캐싱
파일이 존재하는지, 타임스탬프가 설정된 만료 시간보다 짧은지 확인하세요. 파일 수정 타임스탬프가 다음보다 작습니다. 현재 타임스탬프에서 만료 타임스탬프를 뺀 값이 더 크면 캐시를 사용하고, 그렇지 않으면 캐시를 업데이트합니다.
콘텐츠가 캐싱을 트리거합니다
데이터가 삽입되거나 업데이트되면 캐시가 강제로 업데이트됩니다.
정적 캐시
여기에 언급된 정적 캐시는 HTML이나 xml 등의 텍스트 파일을 직접 생성하고 업데이트 시 다시 생성하는 정적 캐시를 말하며 변경되지 않는 페이지에 적합합니다. 더 이상 그런 말은 안 할게요.
Memcached
Memcached는 동적 애플리케이션에서 데이터베이스 로드를 줄이고 액세스 속도를 향상시키는 데 사용되는 고성능 분산 메모리 개체 캐싱 시스템입니다.
$memcache = new Memcache;
$memcache->connect('localhost', 11211) 또는 사망(“할 수 없습니다. connect");
$version = $memcache->getVersion();
echo "서버 버전: ".$version."n";
$tmp_object = new stdClass;
$tmp_object->str_attr = 'test';
$tmp_object->int_attr = 123; key', $tmp_object, false, 10) 서버에 데이터 저장 실패”);
echo “데이터를 캐시에 저장합니다(데이터는 10초 후에 만료됩니다)n”
$get_result = $memcache->get( 'key');
echo “캐시 데이터:n”
var_dump($get_result)
데이터베이스 읽기 예:
$sql = 'SELECT * FROM users ';
$key = md5( $sql); //memcached 객체 식별자
if ( !($datas = $mc->get($key)) ) {
// 캐시된 데이터를 가져오지 못한 경우 memcached, 데이터베이스 쿼리를 사용하여 레코드 세트
echo “n”.str_pad('Read datas from MySQL.', 60, '_') ."n"
$conn = mysql_connect('localhost', 'test', 'test');
mysql_select_db('test')
$result = mysql_query($sql); while ($row = mysql_fetch_object($result))
$datas[] = $row;
// 데이터베이스에서 가져옵니다. 얻은 결과 집합 데이터는 Memcached에 저장되어 사용됩니다. 다음 방문
$mc->add($key, $datas);
} else {
echo "n".str_pad('memcached에서 데이터 읽기 .', 60, '_')."n";
var_dump($datas)
PHP 버퍼
eaccelerator, apc, phpa, xcache 등
MySQL 캐시
이것도 비코드 수준으로 간주됩니다. 클래식 데이터베이스에서는 이 방법을 사용합니다. 아래 실행 시간을 보면 0.09xxx와 같습니다.
[클라이언트]
… >
max_connections=600
max_connect_errors=500
back_log=200
Interactive_timeout=7200
query_cache_size=64M
…
table_cache=512
... _size=1024M
read_buffer_size=512M
…
Thread_concurrency=8
웹 캐시 기반 역방향 프록시
Nginx, SQUID, mod_PRoxy(apache2 등) 위는 mod_proxy, mod_cache로 구분됩니다.
NGINX 예:
#user 아무도;
작업자_프로세스 4;
error_log 로그/error.log crit;
pid 로그/nginx.pid
이벤트 {
epoll 사용;
Worker_connections 51200;
http {
include mime.types; on;
keepalive_timeout 65;
tcp_nodelay on; 80 무게=1;
무게=1;
server 10.10.10.204:80 Weight=1;
}
업스트림 bspwsisvr { }>
}
업스트림 BSPADMINSVR {
서버 10.10.10.222:80 가중치 = 1;
}
업스트림 bspbuyersvr {
서버 10.10.10.223:80 가중치=1
}
업스트림 bspellervr { > }
업스트림 bsploginsvr {
서버 10.10.10.220:443 Weight=1
} er 10.10.10.220:80 Weight= 1; "$http_referer" "$http_user_agent" '; .com
수신 10.10.10.230:80
server_name >proxy_pass http://bspimgsvr;
include proxy_setting.conf
#style.test.com
server {
listen 10.10.10.230:80;
server_name style.test.com;
위치 / {
proxy_pass http://bspstylesvr
include
}
access_loglogs/style.log test_com
}
#help.test.com
server {
listen 10.10.10.230:80 ;
server_name help.test.com;
위치 / {
Proxy_pass
include proxy_setting.conf; ;
}
#admin.test.com
서버 { server_name
위치 / {
proxy_pass http://bspadminsvr;
include proxy_setting.conf;
access_loglogs/admin.log test_com;
server_name Buyer.test.com;
위치 / {
Proxy_pass http://bspbuyersvr
include proxy_setting.conf;
access_log 로그/buyer.log test_com
}
서버 {
듣기 10.10.10.230:80;
서버_이름 Seller.test.com;
위치 / {
proxy_pass http://bspellervr;
include proxy_setting.conf;
}
access_loglogs/seller.log test_com;
}
#wsi.test.com
서버 {
listen 10.10.10.230:80;
서버_이름 wsi.test.com;
위치 / {
proxy_pass http://bspwsisvr;
include proxy_setting.conf;
}
access_loglogs/wsi.log test_com;
}
#www.test.com
서버 {
listen 10.10.10.230:80;
서버_이름 www.test.com *.test.com;
위치 ~ ^/NginxStatus/ {
stub_status on;
access_log off;
}
위치 / {
proxy_pass http://bspfrontsvr;
include proxy_setting.conf;
}
access_loglogs/www.log test_com;
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root html;
}
}
#login.test.com
서버 {
듣기 10.10.10.230:44 3;
서버_이름 login.test.com;
ssl 켜짐;
ssl_certificate cert.pem;
ssl_certificate_key cert.key;
ssl_session_timeout 5분;
ssl_protocols SSLv2 SSLv3 TLSv1;
ssl_ciphers ALL:!ADH:!EXPORT56:RC4+RSA:+HIGH:+MEDIUM:+LOW:+SSLv2:+EXP;
ssl_prefer_server_ciphers on;
위치 / {
proxy_pass https://bsploginsvr;
include proxy_setting.conf;
}
access_loglogs/login.log test_com;
}
#login.test.com 등록용
서버 {
listen 10.10.10.230:80;
서버_이름 login.test.com;
위치 / {
proxy_pass http://bspregistersvr;
include proxy_setting.conf;
}
access_loglogs/register.log test_com;
}
}
proxy_redirect off;
proxy_set_header 호스트 $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
client_max_body_size 10m;
client_body_buffer_size 128k;
proxy_connect_timeout 90;
proxy_send_timeout 90;
proxy_read_timeout 90;
proxy_buffer_size 4k;
proxy_buffers 4 32k;
proxy_busy_buffers_size 64k;
proxy_temp_file_write_size 64k;
mod_proxy적 사례:
ServerName www.zxsv.com
ServerAdmin admin@zxsv.com
# 역방향 프록시 설정
ProxyPass / http://www.zxsv. com:8080/
ProxyPassReverse / http://www.zxsv.com:8080/
# 캐시 디렉토리 루트
CacheRoot “/var/www/proxy”
# 최대 캐시 저장 용량
CacheSize 50000000
# 시간: 4시간마다
CacheGcInterval 4
# 최대 페이지 만료 시간: 시간
CacheMaxExpire 240
# 만료 시간 = (현재 – last_modified) * CacheLastModifiedFactor
CacheLastModifiedFactor 0.1
# def 대체 만료 태그: 시간
CacheDefaultExpire 1
# 콘텐츠 검색 비율 후 강제 완료: 60-90%
CacheForceCompletion 80
CustomLog /usr/local/apache/logs/dev_access_log 결합