all repos — wp-ffpc @ b894610cb1f4b11281b0f6a05816ac60a416ea38

wp-ffpc.php (view raw)

 1
 2
 3
 4
 5
 6
 7
 8
 9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
<?php
/*
Plugin Name: WP-FFPC
Plugin URI: https://github.com/petermolnar/wp-ffpc
Description: WordPress in-memory full page cache plugin
Version: 1.11.2
Author: Peter Molnar <hello@petermolnar.eu>
Author URI: http://petermolnar.net/
License: GPLv3
Text Domain: wp-ffpc
Domain Path: /languages/
*/

/*Copyright 2010-2017 Peter Molnar ( hello@petermolnar.eu )

	This program is free software; you can redistribute it and/or modify
	it under the terms of the GNU General Public License, version 3, as
	published by the Free Software Foundation.

	This program is distributed in the hope that it will be useful,
	but WITHOUT ANY WARRANTY; without even the implied warranty of
	MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.See the
	GNU General Public License for more details.

	You should have received a copy of the GNU General Public License
	along with this program; if not, write to the Free Software
	Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA02110-1301USA
*/

defined('ABSPATH') or die("Walk away.");

include_once ( 'wp-ffpc-class.php' );

$wp_ffpc_defaults= array (
	'hosts'					=> '127.0.0.1:11211',
	'memcached_binary'		=> false,
	'authpass'				=> '',
	'authuser'				=> '',
	'browsercache'			=> 0,
	'browsercache_home'		=> 0,
	'browsercache_taxonomy'	=> 0,
	'expire'				=> 300,
	'expire_home'			=> 300,
	'expire_taxonomy'		=> 300,
	'invalidation_method'	=> 0,
	'prefix_meta'			=> 'meta-',
	'prefix_data'			=> 'data-',
	'charset'				=> 'utf-8',
	'log'					=> true,
	'cache_type'			=> 'memcached',
	'cache_loggedin'		=> false,
	'nocache_home'			=> false,
	'nocache_feed'			=> false,
	'nocache_archive'		=> false,
	'nocache_single'		=> false,
	'nocache_page'			=> false,
	'nocache_cookies'		=> false,
	'nocache_dyn'			=> true,
	'nocache_woocommerce'	=> true,
	'nocache_woocommerce_url'	=> '',
	'nocache_url'			=> '^/wp-',
	'nocache_comment'		=> '',
	'response_header'		=> false,
	'generate_time'			=> false,
	'precache_schedule'		=> 'null',
	'key'					=> '$scheme://$host$request_uri',
	'comments_invalidate'	=> true,
	'pingback_header'		=> false,
	'hashkey'				=> false,
);

$wp_ffpc= new WP_FFPC ( 'wp-ffpc', '1.11.2', 'WP-FFPC', $wp_ffpc_defaults );