Advertisement
Guest User

Untitled

a guest
Jul 31st, 2017
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.63 KB | None | 0 0
  1. [xcache-common]
  2. ;; install as zend extension (recommended), normally "$extension_dir/xcache.so"
  3. ;zend_extension = /usr/local/lib/php/extensions/non-debug-non-zts-xxx/xcache.so
  4. ; zend_extension_ts = /usr/local/lib/php/extensions/non-debug-zts-xxx/xcache.so
  5. ;; For windows users, replace xcache.so with php_xcache.dll
  6. ;zend_extension_ts = c:/php/extensions/php_xcache.dll
  7. ;; or install as extension, make sure your extension_dir setting is correct
  8. extension = xcache.so
  9. ;; or win32:
  10. ; extension = php_xcache.dll
  11.  
  12. [xcache.admin]
  13. xcache.admin.user = "cuenca"
  14. ; xcache.admin.pass = md5($your_password)
  15. xcache.admin.pass = "8728fd01dd6e4e0bbf3c773f21bcefba"
  16.  
  17. [xcache]
  18. ; ini only settings, all the values here is default unless explained
  19.  
  20. ; select low level shm/allocator scheme implemenation
  21. xcache.shm_scheme = "mmap"
  22. ; to disable: xcache.size=0
  23. ; to enable : xcache.size=64M etc (any size > 0) and your system mmap allows
  24. xcache.size = 64M
  25. ; set to cpu count (cat /proc/cpuinfo |grep -c processor)
  26. xcache.count = 1
  27. ; just a hash hints, you can always store count(items) > slots
  28. xcache.slots = 8K
  29. ; ttl of the cache item, 0=forever
  30. xcache.ttl = 0
  31. ; interval of gc scanning expired items, 0=no scan, other values is in seconds
  32. xcache.gc_interval = 0
  33.  
  34. ; same as aboves but for variable cache
  35. xcache.var_size = 0M
  36. xcache.var_count = 1
  37. xcache.var_slots = 8K
  38. ; default ttl
  39. xcache.var_ttl = 0
  40. xcache.var_maxttl = 0
  41. xcache.var_gc_interval = 300
  42.  
  43. xcache.test = Off
  44. ; N/A for /dev/zero
  45. xcache.readonly_protection = On
  46. ; for *nix, xcache.mmap_path is a file path, not directory.
  47. ; Use something like "/tmp/xcache" if you want to turn on ReadonlyProtection
  48. ; 2 group of php won't share the same /tmp/xcache
  49. ; for win32, xcache.mmap_path=anonymous map name, not file path
  50. xcache.mmap_path = "/tmp/xcache"
  51.  
  52.  
  53. ; leave it blank(disabled) or "/tmp/phpcore/"
  54. ; make sure it's writable by php (without checking open_basedir)
  55. xcache.coredump_directory = "/tmp/phpcore/"
  56.  
  57. ; per request settings
  58. xcache.cacher = On
  59. xcache.stat = On
  60. xcache.optimizer = Off
  61.  
  62. [xcache.coverager]
  63. ; per request settings
  64. ; enable coverage data collecting for xcache.coveragedump_directory and xcache_coverager_start/stop/get/clean() functions (will hurt executing performance)
  65. xcache.coverager = Off
  66.  
  67. ; ini only settings
  68. ; make sure it's readable (care open_basedir) by coverage viewer script
  69. ; requires xcache.coverager=On
  70. xcache.coveragedump_directory = ""
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement