Skip to content

Releases: pods-framework/pods-alternative-cache

Pods Alternative Cache 2.0.7

02 Mar 15:32
Compare
Choose a tag to compare
  • Fix DB-based storage value sets (props @Danone89)
  • Tested against WordPress 5.4 for compatibility

Pods Alternative Cache 2.0.6

02 Mar 15:48
08b2bbd
Compare
Choose a tag to compare
  • Fixed caching issues with fallback cache
  • Added more tests to improve stability

Pods Alternative Cache 2.0.5

15 Nov 20:36
Compare
Choose a tag to compare
  • Fix PHP notices when handling fallback values

Pods Alternative Cache 2.0.4

15 Nov 20:36
Compare
Choose a tag to compare
  • Added a new object cache fallback for File storage (default alt cache) so if any writes fail it will save them to the normal object cache; You can disable this by setting define( 'PODS_ALT_CACHE_FALLBACK', false );

Pods Alternative Cache 2.0.3

24 Oct 02:28
Compare
Choose a tag to compare
  • Fixed cases where transients/object cache could be used by Pods before Pods Alt Cache fully loads
  • Updated WP compatibility version
  • PHPCS fixes

Pods Alternative Cache 2.0.2

02 Jun 13:50
Compare
Choose a tag to compare
  • Revamped branding assets
  • Fixed php notice
  • Fixed usage of memcached port to be an integer

Pods Alternative Cache 2.0.1

24 Oct 02:28
Compare
Choose a tag to compare
  • Fixed cache file/folder deleting bug that wouldn't let Pods clear / preload caches properly
  • Typo fix (props @szepeviktor)

Pods Alternative Cache 2.0

24 Oct 02:28
Compare
Choose a tag to compare
  • Added support for a Memcache caching (props @shaer)
  • Added support for WP_Filesystem usage instead of using PHP directly
  • Added additional WPEngine compatibility
  • Refactored into a better OO pattern so the code is easier to use and extend
  • Added ability to create custom storage types through the pods_alternative_cache_storage_types filter, return $storage_types; where you've set $storage_types[ 'your_type' ] = 'Your_Class';
  • File storage now uses md5-based folder structure to avoid issues on sites with a large amount of cached objects to avoid having folders with too many files in them which could cause issues with certain hosts
  • Found a bug? Have a great feature idea? Get on GitHub and tell us about it and we'll get right on it: github.com/pods-framework/pods-alternative-cache/issues/new

This release contained 1.1 and 1.2 which were not officially released.

Pods Alternative Cache 1.2

24 Oct 02:30
Compare
Choose a tag to compare
  • Added support for a Memcache caching (props @shaer)
  • Added support for WP_Filesystem usage instead of using PHP directly
  • Added additional WPEngine compatibility

Pods Alternative Cache 1.1

24 Oct 02:31
Compare
Choose a tag to compare
  • Refactored into a better OO pattern so the code is easier to use and extend
  • Added ability to create custom storage types through the pods_alternative_cache_storage_types filter, return $storage_types; where you've set $storage_types[ 'your_type' ] = 'Your_Class';
  • File storage now uses md5-based folder structure to avoid issues on sites with a large amount of cached objects to avoid having folders with too many files in them which could cause issues with certain hosts