Search
j0ke.net Open Build Service
>
Projects
>
home:jg
:
php5-extensions
>
php5-xcache
> xcache-broken.ini.patch
Sign Up
|
Log In
Username
Password
Cancel
Overview
Repositories
Revisions
Requests
Users
Advanced
Attributes
Meta
File xcache-broken.ini.patch of Package php5-xcache
Index: xcache.ini =================================================================== --- xcache.ini (revisiĆ³n: 272) +++ xcache.ini (copia de trabajo) @@ -1,13 +1,6 @@ [xcache-common] ;; install as zend extension (recommended), normally "$extension_dir/xcache.so" -zend_extension = /usr/local/lib/php/extensions/non-debug-non-zts-xxx/xcache.so -; zend_extension_ts = /usr/local/lib/php/extensions/non-debug-zts-xxx/xcache.so -;; For windows users, replace xcache.so with php_xcache.dll -zend_extension_ts = c:/php/extensions/php_xcache.dll -;; or install as extension, make sure your extension_dir setting is correct -; extension = xcache.so -;; or win32: -; extension = php_xcache.dll +zend_extension = ${extension_dir}"/xcache.so" [xcache.admin] xcache.admin.user = "mOo" @@ -21,7 +14,7 @@ xcache.shm_scheme = "mmap" ; to disable: xcache.size=0 ; to enable : xcache.size=64M etc (any size > 0) and your system mmap allows -xcache.size = 0M +xcache.size = 64M ; set to cpu count (cat /proc/cpuinfo |grep -c processor) xcache.count = 1 ; just a hash hints, you can always store count(items) > slots @@ -42,12 +35,12 @@ xcache.test = Off ; N/A for /dev/zero -xcache.readonly_protection = Off +xcache.readonly_protection = On ; for *nix, xcache.mmap_path is a file path, not directory. ; Use something like "/tmp/xcache" if you want to turn on ReadonlyProtection ; 2 group of php won't share the same /tmp/xcache ; for win32, xcache.mmap_path=anonymous map name, not file path -xcache.mmap_path = "/dev/zero" +xcache.mmap_path = "/tmp/xcache" ; leave it blank(disabled) or "/tmp/phpcore/"