-
Notifications
You must be signed in to change notification settings - Fork 54
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
엔진 설정 파일로 구동한 경우에 중복 설정 처리 #454
Comments
This comment was marked as outdated.
This comment was marked as outdated.
This comment was marked as outdated.
This comment was marked as outdated.
This comment was marked as outdated.
This comment was marked as outdated.
@SuhwanJang |
@jhpark816 |
@SuhwanJang |
@jhpark816 |
@SuhwanJang
참고로, 현재 구동 옵션 중에 engine 설정으로 옮겨야 할 것도 있고, |
@jhpark816
해결방안
|
@SuhwanJang 인턴 작업으로 진행합시다. |
엔진 설정은 2가지 형태로 제공할 수 있습니다.
동일한 설정에 대해 2가지 방식으로 제공할 경우, engine config 정리 (#541) 이슈에서 다루고 있으므로, |
구동 옵션에 명시한 설정이 엔진 설정 파일에도 중복으로 있는 경우 엔진 설정 파일의 값으로 최종 설정된다.
구동 옵션에 명시한 설정이 최종 설정 되도록 변경한다.
-e config_file=path 를 구동 옵션 스트링에 append 하는데, engine 에서 차례로 읽어 반영하면 config_file 을 마지막에 읽기 때문에 구동 옵션이 overwrite 된다.
memcached.c
해결 방안 :
append 하지 않고, 별도로 전달하여 처리.
init_engine(engine_handle, 구동 옵션, "-e config_file=path", mc_logger);
@MinWooJin 검토 요청드립니다.
The text was updated successfully, but these errors were encountered: