Home Backend Development PHP Tutorial Detailed tutorial on adding and setting up php extension xcache in win7

Detailed tutorial on adding and setting up php extension xcache in win7

Jul 25, 2016 am 08:52 AM

Regarding the method of adding and setting the xcache extension for PHP in the win7 system, the installation and configuration tutorial of xcache, the file/variable hash reference value of the xcache.slots cache, you can set it according to your actual situation, and friends who need it can refer to it. xcache 3.2.0, which is supported by the full range of php5, official website: http://xcache.lighttpd.net/

If you are not good at English, you can click on the right to switch the language to Chinese.

First, download the latest version: http://xcache.lighttpd.net/pub/releases/3.2.0/ Remember to select the correct version.

Download and unzip it and put it in the ext directory under php, then open php.ini and add extension = php_xcache.dll

The compressed package also contains a demonstration of the Chinese version of xcache's php.ini, and a program to view xcache and information.

Note that xcache.admin.pass is encrypted with md5 and stored

xcache.count can be set according to the number of your cpu, the default is 1

xcache.slots cached file/variable hash reference value, you can set it according to your actual situation

Once completed, restart the apache service.

;; This file is just an example, please set it in php.ini for it to take effect [xcache-common] ;; Non-windows example: extension=xcache.so ;; windows system example: ; extension = php_xcache.dll [xcache.admin] xcache.admin.enable_auth = on xcache.admin.user = "moo" ; xcache.admin.pass = md5($your password) ; Log in using $your_password. Please encrypt the password with md5 and fill it in. xcache.admin.pass = "" [xcache] ; Most of the options here can only be modified in the ini. The default values ​​listed here are unless otherwise stated. ; Select the underlying memory sharing implementation solution xcache.shm_scheme = "mmap" ; Disabled: xcache.size=0 ; Enable: xcache.size=64m and the like (any value >0) Also please pay attention to your system mmap upper limit xcache.size = 60m ; It is recommended to set it to the number of cpu (cat /proc/cpuinfo |grep -c processor) xcache.count = 1 ; It's just a hash reference value, the actual storage items (php scripts/variables) can exceed this number xcache.slots = 8k ; ttl of cached items, 0=permanent xcache.ttl = 0 ; The time interval for scanning expired items, 0=no scanning, other values ​​are in seconds xcache.gc_interval = 0 ; Same as above, only for variable cache settings xcache.var_size = 4m xcache.var_count = 1 xcache.var_slots = 8k ; Default value of xcache_*() function ttl parameter xcache.var_ttl = 0 ; Limit xcache_*() function ttl parameters to no more than this setting. 0=No limit xcache.var_maxttl = 0 xcache.var_gc_interval = 300 ; Invalid when /dev/zero xcache.readonly_protection = off ; For *nix systems, xcache.mmap_path is a file path rather than a directory. (Automatically created/overwritten) ; If you wish to enable readonlyprotection, you must avoid using "/dev/*" and use something like "/tmp/xcache" ; Different php process groups will not share the same /tmp/xcache ; For win32 systems, xcache.mmap_path=anonymous map name, not file path. It is recommended to use the word xcache to avoid conflicts with other software xcache.mmap_path = "/dev/zero" ; Only useful when xcache exceptions occur. Set to empty (disabled) or similar to "/tmp/phpcore/" (can be written to files by php) xcache.coredump_directory = "" ; For windows only. Unless the xcache developer tells you otherwise, keep the default value xcache.coredump_type = 0 ; Automatically disable caching when exception occurs xcache.disable_on_crash = off ; Enable experimental features (if any) xcache.experimental=off ; The following are request-level settings that can be changed. Can be ini_set, .htaccess, etc. xcache.cacher = on xcache.stat = on xcache.optimizer = off [xcache.coverager] ; This function will reduce operating performance after it is turned on. ; This feature will only be enabled when xcache.coverager == on && xcache.coveragedump_directory == "non-null value" ; per request settings. Can be ini_set, .htaccess, etc. ; Enable code process coverage information collection and functions such as xcache_coverager_start/stop/get/clean() xcache.coverager = off xcache.coverager_autostart = on ; Only set within php ini files ; Please ensure that this directory can be read by the coverage viewer script (note open_basedir) xcache.coveragedump_directory = ""

Then check phpinfo to see if xcache has taken effect. As shown below

Now create a new directory such as xcache in the web publishing directory, and put the lib and htdocs directories in the official compressed package inside,

Enter http://127.0.0.1/xcache/htdocs/ in the browser, and a login account and password dialog box will pop up. After entering it, you can see the xcache environment and configuration, variables, etc. .

But in fact, xcache can not only cache variables, but also cache php files. If the xcache extension is configured in your php environment, it will automatically cache every php file you access. There is no need to modify the code, it is very convenient and fast. As shown in the picture below, I only accessed phpmyadmin, and the official xcache package can detect the cache list of phpmyadmin.

The code is very simple, with singleton mode and can be used directly in the application environment. The code has been perfectly tested in php5.5.12.

$c =new cache_xcache(); $c->set('key', 'aaaa123'); echo $c->get('key'); cache_xcache::getinstance()->set('key1', '999999999999999'); echo cache_xcache::getinstance()->get('key1'); /**----------------------------------Code starts------------------ ----------------**/ class cache_xcache { /*** Instantiate this class in singleton mode * * @var object*/ protected static $_instance = null; /***Default caching strategy * * @var array*/ protected $_defaultoptions = array('expire' => 900); /*** Construction method * * @access public * @return boolean*/ public function __construct() { //Analyze xcache extension module if (!extension_loaded('xcache')) { die('the xcache extension to be loaded before use!'); } return true; } /*** Write cache * * @access public * * @param string $key cache key * @param mixed $value cache value * @param integer $expire lifetime * * @return boolean*/ public function set($key, $value, $expire = null) { //Parameter analysis if (!$key) { return false; } $expire = is_null($expire) ? $this->_defaultoptions['expire'] : $expire; return xcache_set($key, $value, $expire); } /*** Read the cache and return false if it fails or the cache is invalid. * * @access public * * @param string $key cache key * * @return mixed*/ public function get($key) { //Parameter analysis if (!$key) { return false; } return xcache_isset($key) ? xcache_get($key) : false; } /*** Cache a variable to data storage * * @access public * * @param string $key data key * @param mixed $value data value * @param int $expire cache time (seconds) * * @return boolean*/ public function add($key, $value, $expire = null) { //Parameter analysis if (!$key) { return false; } $expire = is_null($expire) ? $this->_defaultoptions['expire'] : $expire; return !xcache_isset($key) ? $this->set($key,$value,$expire) : false; } /*** Delete the specified cache * * @access public * * @param string $key cache key * * @return boolean*/ public function delete($key) { //Parameter analysis if (!$key) { return false; } return xcache_unset($key); } /*** Clear all cache variables * * @access public * @return boolean*/ public function clear() { return xcache_clear_cache(xc_type_var, 0); } /*** Singleton mode * * Used for singleton instantiation of this class * * @access public * @return object*/ public static function getinstance() { if (!self::$_instance) { self::$_instance = new self(); } return self::$_instance; } }


Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Repo: How To Revive Teammates
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

Working with Flash Session Data in Laravel Working with Flash Session Data in Laravel Mar 12, 2025 pm 05:08 PM

Laravel simplifies handling temporary session data using its intuitive flash methods. This is perfect for displaying brief messages, alerts, or notifications within your application. Data persists only for the subsequent request by default: $request-

Build a React App With a Laravel Back End: Part 2, React Build a React App With a Laravel Back End: Part 2, React Mar 04, 2025 am 09:33 AM

This is the second and final part of the series on building a React application with a Laravel back-end. In the first part of the series, we created a RESTful API using Laravel for a basic product-listing application. In this tutorial, we will be dev

cURL in PHP: How to Use the PHP cURL Extension in REST APIs cURL in PHP: How to Use the PHP cURL Extension in REST APIs Mar 14, 2025 am 11:42 AM

The PHP Client URL (cURL) extension is a powerful tool for developers, enabling seamless interaction with remote servers and REST APIs. By leveraging libcurl, a well-respected multi-protocol file transfer library, PHP cURL facilitates efficient execution of various network protocols, including HTTP, HTTPS, and FTP. This extension offers granular control over HTTP requests, supports multiple concurrent operations, and provides built-in security features.

Simplified HTTP Response Mocking in Laravel Tests Simplified HTTP Response Mocking in Laravel Tests Mar 12, 2025 pm 05:09 PM

Laravel provides concise HTTP response simulation syntax, simplifying HTTP interaction testing. This approach significantly reduces code redundancy while making your test simulation more intuitive. The basic implementation provides a variety of response type shortcuts: use Illuminate\Support\Facades\Http; Http::fake([ 'google.com' => 'Hello World', 'github.com' => ['foo' => 'bar'], 'forge.laravel.com' =>

12 Best PHP Chat Scripts on CodeCanyon 12 Best PHP Chat Scripts on CodeCanyon Mar 13, 2025 pm 12:08 PM

Do you want to provide real-time, instant solutions to your customers' most pressing problems? Live chat lets you have real-time conversations with customers and resolve their problems instantly. It allows you to provide faster service to your custom

Notifications in Laravel Notifications in Laravel Mar 04, 2025 am 09:22 AM

In this article, we're going to explore the notification system in the Laravel web framework. The notification system in Laravel allows you to send notifications to users over different channels. Today, we'll discuss how you can send notifications ov

Explain the concept of late static binding in PHP. Explain the concept of late static binding in PHP. Mar 21, 2025 pm 01:33 PM

Article discusses late static binding (LSB) in PHP, introduced in PHP 5.3, allowing runtime resolution of static method calls for more flexible inheritance.Main issue: LSB vs. traditional polymorphism; LSB's practical applications and potential perfo

PHP Logging: Best Practices for PHP Log Analysis PHP Logging: Best Practices for PHP Log Analysis Mar 10, 2025 pm 02:32 PM

PHP logging is essential for monitoring and debugging web applications, as well as capturing critical events, errors, and runtime behavior. It provides valuable insights into system performance, helps identify issues, and supports faster troubleshoot

See all articles