Skip to content

Commit

Permalink
Pods Alternative Cache 2.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
sclark3-godaddy committed Mar 24, 2024
1 parent 2551bf1 commit c0dd498
Show file tree
Hide file tree
Showing 4 changed files with 19 additions and 7 deletions.
7 changes: 7 additions & 0 deletions .wordpress-org/blueprint.json
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,13 @@
"activate": true
}
},
{
"step": "installTheme",
"themeZipFile": {
"resource": "wordpress.org\/themes",
"slug": "raft"
}
},
{
"step": "login",
"username": "admin",
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "pods-alternative-cache",
"version": "2.1.8",
"version": "2.2.0",
"description": "Alternative caching engine for Pods for large sites on hosts with hard limits on how much you can store in the object cache.",
"author": "Pods Foundation, Inc",
"homepage": "https://pods.io",
Expand Down
5 changes: 3 additions & 2 deletions pods-alternative-cache.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,14 @@
/*
Plugin Name: Pods Alternative Cache
Plugin URI: https://pods.io/2014/04/16/introducing-pods-alternative-cache/
Requires Plugins: pods
Description: Alternative caching engine for Pods for large sites on hosts with hard limits on how much you can store in the object cache
Version: 2.1.8
Version: 2.2.0
Author: Pods Framework Team
Author URI: https://pods.io/
*/

define( 'PODS_ALT_CACHE_VERSION', '2.1.8' );
define( 'PODS_ALT_CACHE_VERSION', '2.2.0' );
define( 'PODS_ALT_CACHE_DIR', plugin_dir_path( __FILE__ ) );

/**
Expand Down
12 changes: 8 additions & 4 deletions readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@
Contributors: sc0ttkclark
Donate link: https://friends.pods.io/
Tags: pods, cache, wpengine
Requires at least: 3.8
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 5.6
Stable tag: 2.1.8
Requires PHP: 7.2
Stable tag: 2.2.0
License: GPLv2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html

Expand Down Expand Up @@ -42,7 +42,7 @@ Check out our GitHub for a list of contributors, or search our GitHub issues to

= Why an Alternative Cache? =

Hosts like WPEngine have limits set on their object caching engine that are based on what they find optimal for their environment. Sometimes, plugins, themes, and even WordPress core can utilize object cache to the point where it gets too full. When that happens, certain caching engines like APC can remove objects from their cache and that can cause what appears to be random numbers of queries on each page load.
Hosts like WPEngine and GoDaddy have limits set on their object caching engine that are based on what they find optimal for their environment. Sometimes, plugins, themes, and even WordPress core can utilize object cache to the point where it gets too full. When that happens, certain caching engines like APC can remove objects from their cache and that can cause what appears to be random numbers of queries on each page load.

What Pods Alternative Cache does is store all of the Pods objects that need caching, separate from the default object caching engine. Depending on the environment or site, this may still not be optimal. You'll want to test things out and keep an eye on your site's performance to see if it's the right fit for you.

Expand Down Expand Up @@ -76,6 +76,10 @@ Disable object cache fallback, when File writes fail:

== Changelog ==

= 2.2.0 - March 24th, 2024 =

* New requirements that match Pods: WP 6.0+, PHP 7.2+, and Pods 3.0+ (@sc0ttkclark)

= 2.1.8 - March 24th, 2024 =

* Fixed: Resolved a PHP notices with the storage set method. (@sc0ttkclark)
Expand Down

0 comments on commit c0dd498

Please sign in to comment.