commandline_args
필수 옵션
옵션 | 설명 | 기타 |
---|---|---|
| Engine to load, (for example, -E .libs/default_engine.so) |
기본 옵션
옵션 | 설명 | 기본값 | 기타 |
---|---|---|---|
| TCP 포트 번호 | 11211 | |
| UDP 포트 번호 | 11211 | 0 is off |
| UNIX socket path | ||
| mask for UNIX socket | 0700 | in octal |
| interface to listen on | INADDR_ANY(모든 주소) | |
| 백그라운드 실행 ( | ||
| maximize core file limit | ||
|
| root 실행 시 | |
| max simultaneous connections | 1024 | |
| lock down all paged memory. Note that there is a limit on how much memory you may lock. Trying to allocate more than that would fail, so be sure you set the limit correctly for the user you started the daemon with (not for | ||
| verbose, very verbose, extremely verbose | ||
| 도움말 출력 후 종료 | ||
| memcached, libevent licence 출력 | ||
| save PID in | only used with | |
| number of threads to use | 4 | |
| Maximum number of requests per event, limits the number of requests process for a given connection to prevent starvation | 20 | |
| Set the backlog queue limit | 1024 | |
| Binding protocol - one of ascii, binary, or auto | auto | |
| engine_config 옵션, |
engine config 관련 옵션
아래 옵션들을 사용하지 않더라도 -e 옵션을 활용해 engine 관련 설정을 지정할 수 있다. 예시. -m 40 -M
대신 -e cache_size=40;eviction=false;
를 사용해도 동일한 동작 수행 다른 옵션과 -e
옵션을 중복해서 사용하는 경우 -e
옵션이 더 우선 적용된다. 또한 -e <key>=<value1>;<key>=<value2>
형태로 입력하는 경우 key
의 값은 value2
로 최종 적용된다.
옵션 | 설명 | 기본값 | 기타 |
---|---|---|---|
| 최대 메모리 | 64 | MB 단위 |
| 메모리 부족한 경우 (item 삭제 대신)에러 | ||
| sticky(gummed) memory limit | 0 | MB 단위 |
| chunk size growth factor | 1.25 | |
| minimum space allocated for key+value+flags | 48 | |
| Use | ||
| Try to use large memory pages (if available). Increasing the memory page size could reduce the number of TLB misses and improve the performance. In order to get large pages from the OS, memcached will allocate the total item-cache in one large chunk. | ||
| Disable use of CAS | ||
| Override the size of each slab page. Adjusts max item size | 1mb | min: 1k, max: 128m |
기타
현재 engine 관련 설정은 -e
옵션을 활용한 config file 지정, 다른 구동 옵션을 활용한 설정, 환경변수에서 읽어오는 방법 등 다양한 방법을 사용하고 있다. 현재 방법들 중 환경변수는 사용자 관점에서 관리하기가 어렵고, 구동 옵션에서는 엔진 관련 설정과 다른 설정이 명확히 드러나지 않는다는 문제가 있다. 따라서 -e config_file=/config_file1.conf
형태로 파일을 이용하여 engine 설정을 입력하는 것이 좋다.
Last updated