PHP code example of houdunwang / cache

1. Go to this page and download the library: Download houdunwang/cache library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

houdunwang / cache example snippets


$config = [
	/**
	 * 组件支持多种缓存驱动
	 * 修改驱动为:file memcache redis mysql即可更改缓存机制
	 * memcache、redis需要自行安装服务器软件
	 * mysql缓存需要创建数据表
	 */
	'driver'   => 'file',
	/**
	 * 文件缓存
	 */
	'file'     => [
		'dir' => 'storage/cache'
	],
	/**
	 * memcache缓存
	 * 多个服务器设置二维数组
	 */
	'memcache' => [
		'host' => '127.0.0.1',
		'port' => 11211,
	],
	/**
	 * redis缓存
	 * 多个服务器设置二维数组
	 */
	'redis'    => [
		'host'     => '127.0.0.1',
		'port'     => 6379,
		'password' => '',
		'database' => 0,
	],
	/**
	 * mysql缓存
	 */
	'mysql'    => [
		//缓存表
		'table'    => 'core_cache'
	]
];
\houdunwang\config\Config::set('cache',$config);

d('hd',array('name'=>'后盾人');