by Jory Hogeveen
4.3 (6 reviews)
Pods Alternative Cache
Pods Alternative Cache is a file-based or database-based caching solution for hosts that have limitations on object caching.
Compatible with WP 6.8.3
v2.2.1
Current Version v2.2.1
Updated 8 months ago
Last Update on 31 Mar, 2025
Synced 23 hours ago
Last Synced on
Rank
#3,310
—
No change
Active Installs
5K+
—
No change
KW Avg Position
27
—
No change
Downloads
56.5K
—
Total downloads
Support Resolved
0%
—
No change
Rating
86%
Review 4.3 out of 5
4.3
(6 reviews)
Next Milestone 6K
5K+
6K+
179
Ranks to Climb
-
Growth Needed
5,422
Current Installs
Need 578 more installs to reach 6K+
Rank Changes
Current
#3,310
Change
Best
#
Active Installs Growth
Current
5,422+
Growth
Peak
5,422
Downloads Growth
Downloads
Growth
Peak
Reviews & Ratings
4.3
6 reviews
Overall
86%
5
5
(83%)
4
0
(0%)
3
0
(0%)
2
0
(0%)
1
1
(17%)
Tracked Keywords
Showing 2 of 2Unlock Keyword Analytics
Track keyword rankings, search positions, and discover new ranking opportunities with a Pro subscription.
- Full keyword position tracking
- Historical ranking data
- Competitor keyword analysis
Track This Plugin
Get detailed analytics, keyword tracking, and position alerts delivered to your inbox.
Start Tracking FreePlugin Details
- Version
- 2.2.1
- Last Updated
- Mar 31, 2025
- Requires WP
- 6.0+
- Tested Up To
- 6.8.3
- PHP Version
- 7.2 or higher
- Author
- Jory Hogeveen
Support & Rating
- Rating
- ★ ★ ★ ★ ☆ 4.3
- Reviews
- 6
- Support Threads
- 0
- Resolved
- 0%
Keywords
Upgrade to Pro
Unlock keyword rankings, search positions, and detailed analytics with a Pro subscription.
Upgrade NowFrequently Asked Questions
Common questions about Pods Alternative Cache
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.
In your wp-config.php, or prior to the plugins_loaded action, you can define other constants to change how the plugin works. Change the storage type (be sure to deactivate/activate between storage type switches): define( 'PODS_ALT_CACHE_TYPE', 'db' ); // Default is 'file', you can choose 'memcached' too Change the path to the File cache folder: define( 'PODS_ALT_FILE_CACHE_DIR', 'path/to/folder' ); // Default is 'wp-content/podscache' Set Memcached Server host or IP address define( 'PODS_ALT_CACHE_MEMCACHED_SERVER', '127.0.0.1' ); // Default is 'localhost' Set Memcached Server PORT number define( 'PODS_ALT_CACHE_MEMCACHED_PORT', 11211 ); // Default is 11211 Disable Pods Alternative Cache: define( 'PODS_ALT_CACHE', false ); // Default is true Disable object cache fallback, when File writes fail: define( 'PODS_ALT_CACHE_FALLBACK', false ); // Default is true