일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
- Shimajirou
- 여름
- 돈까스
- Sekai Entertainment
- 일본
- 토익
- 자동차
- 점심
- 리눅스
- 명령어
- 코라쿠엔
- TOY
- 스테이크
- 칸칸
- one tab buy
- 전철
- paypay
- youtuber
- 동경 모터쇼
- 돼지갈비
- 시스템관리
- 신쥬쿠
- 사이타마
- fish
- 라면
- しまじろう
- 米沢、팽이
- 원탭바이
- 영단어
- 시마지로
- Today
- Total
IT Japan
[mySQL5.5] 02장. Memory구조 본문
- server variable이나 session variable로 제어한다.
- startup 시에 지정 / SET 으로 동적 지정
- show variables : server variable display
- show status : session variable display
Thread cache
thread_cache_size : thread재사용을 위한 thread cache의 수
클라이언트 접속시 빠른 재접속을 위하요
Memory tables
max_heap_table_size : 메모리 테이블의 최대 메모리 크기
Internal temporary tables
tmp_table_size : 임시테이블을 위한 메모리, 이 크기를 초과하면 disk에 기록한다.
기타 메모리
key_buffer_size : MyISAM 인덱스블럭을 위한 메모리 공간
table_open_cache : 숫자값
Query Cache
query_cache_size : query cache 의 크기
client specific buffers
sort_buffer_size : sort시의 최대 메모리 크기, ORDER BY, GROUP BY
read_buffer_size : sequential table scan
join_buffer_size : join 처리
max_allowed_packet : client 와 server간의 communication에 사용
n Plugin Interface
MySQL5.1 이후부터 plugin API 제공.
- 서버를 재시작하지 않고, 서버 component를 동적으로 loading/unloading가능합니다.
- 이전의 UDF (User-Defined Function)에 대한 security나 versioing에 향상된 기능을 제공.
이전의 UDF지원은 결국 deprecate될 예정입니다.
- 현재 storage engine등은 plugin방식으로 지원됨.
1. plugin 테이블이 존재해야 합니다.
mysql> desc mysql.plugin;
+-------+-----------+------+-----+---------+-------+
| Field | Type | Null | Key | Default | Extra |
+-------+-----------+------+-----+---------+-------+
| name | char(64) | NO | PRI | | |
| dl | char(128) | NO | | | |
+-------+-----------+------+-----+---------+-------+
2 rows in set (0.39 sec)
2. built-in full text parser를 my_parser로 대체할수 있다.
CREATE TABLE t
(
doc CHAR(255),
FULLTEXT INDEX (doc) WITH PARSER my_parser
);
'MySQL' 카테고리의 다른 글
[mySQL5.5] 03장. MySQL Server (0) | 2016.03.23 |
---|---|
[mySQL5.5] 02장. shared-memory-base-name (0) | 2016.03.23 |
MySQL OverView (0) | 2016.03.23 |
innotop 설치 (0) | 2016.03.21 |
테이블 스페이스 확인 (0) | 2016.03.21 |