Appcachify for WordPress Plugin Directory
Appcachify is a WordPress app, with a 5.0 average rating from 2 reviews, as of Aug 31, 2026.
Appcachify is a WordPress Plugin Directory app by Robert O'Rourke. With a rating of 5.0★ from 2 reviews.
AppRanks verdict
Generated from live marketplace data — refreshed daily
Appcachify is a category-leading WordPress app with a limited review volume. Category data on the canonical marketplace listing is currently incomplete, so AppRanks falls back to platform-wide rather than category-relative comparison for this listing. 2 reviews put it in the early-traction tier — useful for early-stage stores willing to be on the leading edge. Early-traction review counts are sensitive to single launch periods or feature events, so a 30-day re-check before bigger commitments often resolves whether the trend is sustained. Paid-only pricing means evaluating fit on the marketplace listing or via the developer's documentation before installing. AppRanks tracks rating, review count, pricing tier, and category position daily — the figures on this page reflect the most recent scrape from the canonical WordPress Plugin Directory listing.
Pros
- +High average rating (5.0★) signals consistent merchant satisfaction
- +Published by Robert O'Rourke — established developer track record
Cons
- −Limited review base (2) — ratings can shift significantly with new feedback
Looking to switch from Appcachify?
See Appcachify's alternatives ranked by audit score, rating, and review velocity.
How Appcachify works
Show full descriptionShow less
The plugin adds an iframe to the footer of your website which points to example.com/manifest.
That URL is an empty page that references the generated manifest file at example.com/manifest.appcache.
The manifest itself is built in the following way:
adds URLs of all queued scripts and styles
searches theme files and folder for any images or other static assets
if a theme has a 307.php template it is used as an offline fallback
a timestamp of the most recently modified file is added to force appcache to refresh
The net result of all this is that your main static files are stored locally on your visitors devices. For mobile this greatly helps to improve download and rendering times.
Documentation Adding items to the manifest Appcache can do more than store static assets. You could cache entire pages, or add fallbacks for when a user is offline.
There are 3 main sections to a manifest:
CACHE The main CACHE section is for URLs that should be explicitly cached.
<?php add_filter( 'appcache_cache', function( $urls ) { $urls[] = '/page-available-offline/'; return $urls; } ); ?>
NETWORK This section is for specifying URLs that should never be cached.
<?php add_filter( 'appcache_network', function( $urls ) { $urls[] = '*'; $urls[] = '/online-only-page/'; return $urls; } ); ?>
FALLBACK The fallback section allows you to set fallback pages or images if the user is offline.
<?php add_filter( 'appcache_fallback', function( $patterns ) { $patterns[] = 'wp-content/uploads/ wp-content/uploads/offline.jpg'; return $patterns; } ); ?>
The update header Appcaches are refetched when the manifest file content changes so we add a few items as comments at the top of the file.
The current theme (and version if available)
The most recent modified time of any files we find the server path for
The size of all the files that we find a server path for
get_var( “SELECT post_modified FROM $wpdb->posts WHERE post_type = ‘post’ ORDER BY post_modified DESC LIMIT 1” );
return $headers;
} );
?>
More about appcache I strongly recommend learning more about what you can do with appcache by reading the following articles:
HTML5 Rock’s Introduction to Appcache
Application cache is a douchebag
Competitors & alternatives
AppRanks tracks competitor sets per category. For Appcachify, the independent listing audit includes a competitive context section, and the full WordPress app index shows the broader marketplace landscape this app competes in. Sign up free to surface a side-by-side competitor matrix customized to your tracked apps.
Frequently asked questions
What is Appcachify?
Appcachify is an app for WordPress. It currently holds a 5.0-star rating from 2 merchant reviews, and AppRanks has been tracking its public marketplace data on the refresh cadence published in our methodology. AppRanks tracks its category position, review-velocity trend, and the top alternatives in the same space. Developed by Robert O'Rourke.