Skip to content
Snippets Groups Projects
Commit 0038c5fc authored by Erick Hitter's avatar Erick Hitter
Browse files

Further code cleanup

parent 0c4f0a5f
Branches
No related tags found
No related merge requests found
...@@ -70,7 +70,7 @@ try { ...@@ -70,7 +70,7 @@ try {
echo "<!-- using predis as a backup -->\n"; echo "<!-- using predis as a backup -->\n";
} }
include_once( "wp-content/plugins/wp-redis-cache/predis5.2.php" ); //we need this to use Redis inside of PHP include_once dirname( __FILE__ ) . '/wp-content/plugins/wp-redis-cache/predis5.2.php' ); //we need this to use Redis inside of PHP
$redis = new Predis_Client( array( $redis = new Predis_Client( array(
'host' => $redis_server, 'host' => $redis_server,
'port' => $redis_port, 'port' => $redis_port,
...@@ -123,7 +123,7 @@ try { ...@@ -123,7 +123,7 @@ try {
// When a page displays after an "HTTP 404: Not Found" error occurs, do not cache // When a page displays after an "HTTP 404: Not Found" error occurs, do not cache
// When the search was used, do not cache // When the search was used, do not cache
if ( ( ! is_404() ) and ( ! is_search() ) ) { if ( ! is_404() && ! is_search() ) {
if ( $unlimited ) { if ( $unlimited ) {
$redis->set( $redis_key, $html_of_page ); $redis->set( $redis_key, $html_of_page );
} else { } else {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment