We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
PHP Version 5.3.10 사용하고 있습니다. PHP APC 적용해서 사용하고 있다가, 1.7.4로 업데이트를 했는데, 로그인이 되지 않는 현상이 발생합니다.
'use_object_cache' => 'apc', 'use_template_cache' => 'apc',
일단, 이번 1.7.4 변경에서 object 캐쉬 부분이 변경된 것 같아, 위의 apc 적용에서 'use_object_cache' => 'apc', 부분을 제거하니 로그인에 문제가 발생하지 않습니다.
1.7.4 이후부터는 'use_object_cache' => 'apc', 적용 불가능하게 방침을 세우신 건지? 아니면 개선이 가능한 것인지 궁금합니다.
The text was updated successfully, but these errors were encountered:
확인해보겠습니다. 문제 보고 감사합니다. :)
Sorry, something went wrong.
fix #445 APC에서 delete()가 null을 삽입하는 문제 수정
ad0144b
문제 수정했으며 다음 버전 배포 전 적용이 필요하시면 classes/cache/CacheApc.class.php 파일에서 $this->put($_key, null, 1);를 apc_delete($_key);로 수정해서 사용할 수 있습니다.
classes/cache/CacheApc.class.php
$this->put($_key, null, 1);
apc_delete($_key);
34fca81
No branches or pull requests
PHP Version 5.3.10 사용하고 있습니다.
PHP APC 적용해서 사용하고 있다가, 1.7.4로 업데이트를 했는데, 로그인이 되지 않는 현상이 발생합니다.
'use_object_cache' => 'apc',
'use_template_cache' => 'apc',
일단, 이번 1.7.4 변경에서 object 캐쉬 부분이 변경된 것 같아, 위의 apc 적용에서 'use_object_cache' => 'apc', 부분을 제거하니 로그인에 문제가 발생하지 않습니다.
1.7.4 이후부터는 'use_object_cache' => 'apc', 적용 불가능하게 방침을 세우신 건지?
아니면 개선이 가능한 것인지 궁금합니다.
The text was updated successfully, but these errors were encountered: