-
-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Fixed: Advanced Post Cache -> Only visible to wp < 6.1.1 as it is already implemented in wp core (WP_Query caching). - Fixed: Filesystem::shutdown_cleanup() -> Avoid cleanup on shutdown if a file is empty. - Fixed: Plugin::register_plugin_hooks() -> Do not load the CronAgent class if cronbot is disabled. - Fixed: TermCount() -> Invalid usage of clean_term_cache. - Fixed: WP_Object_Cache::$cache_hits, WP_Object_Cache::$cache_misses -> Retain same as non persistent. - Fixed: Prevent performance-lab from overwriting the object cache drop-in. - Fixed: Becache::export_alloptions() -> Only export option with autoload 'yes' and not transient. - Fixed: Becache::store_cache() -> Miss match array_serialize. - Added: WP_Object_Cache::$persistent_cache_hits -> Stats hits from cache file. - Added: Tweaks::wpquery() -> wp_allow_query_attachment_by_filename for wp > 6.0.1. - Added: Configuration -> Cache Options, Retain Transients in Db. - Added: Configuration -> Optimisations, Limit Bulk Edit Actions. - Added: Configuration -> Wp Tweaks, Deactivate Post Via Email. - Added: DOCKET_CACHE_TRANSIENTDB constant to enable retaining Transients in the database. - Added: DOCKET_CACHE_IGNORED_TRANSIENTDB constant. A list of cache keys that remain in the object cache instead of the db. - Added: DOCKET_CACHE_POSTVIAEMAIL constant to enable deactivation Post Via Email. - Added: DOCKET_CACHE_LIMITBULKEDIT constant to enable Limit Bulk Edit Actions. - Added: DOCKET_CACHE_LIMITBULKEDIT_LIMIT constant to change bulk edit limit. By default it is set as 100.. - Changed: Advanced Post Cache, some part of the code has been moved to Tweaks::wpquery(). - Removed: WP_Object_Cache::is_data_uptodate() -> No longer needed. - Updated: Symfony component -> symfony/var-exporter v5.4.21.
- Loading branch information
Showing
37 changed files
with
1,956 additions
and
1,493 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,22 @@ | ||
The portion of following projects has been used in Docket Cache. Thank you for all the great works!. | ||
List in alphabetical order: | ||
|
||
1) Advanced Post Cache | ||
https://github.com/Automattic/vip-go-mu-plugins-built/blob/master/advanced-post-cache/advanced-post-cache.php. | ||
|
||
2) Lightweight Term Count Update | ||
https://github.com/Automattic/lightweight-term-count-update. | ||
1) EventList(): includes/src/EventList.php | ||
- plugins/wp-crontrol/src/event-list-table.php | ||
- plugins/wp-crontrol/src/event.php | ||
- plugins/query-monitor/classes/Util.php | ||
|
||
3) MonoDB | ||
https://github.com/nawawi/MonoDB | ||
1) LimitBulkedit(): includes/src/LimitBulkedit.php | ||
https://github.com/Automattic/vip-go-mu-plugins/blob/develop/performance/bulk-edit.php | ||
|
||
4) Software Testing Isometric Banner Functional Test | ||
Designed by upklyak / Freepik -- http://www.freepik.com | ||
2) PostCache(): includes/src/PostCache.php | ||
https://github.com/Automattic/vip-go-mu-plugins-built/blob/master/advanced-post-cache/advanced-post-cache.php. | ||
|
||
5) Symfony VarExporter Component | ||
3) Filesystem::export_var(): include/src/Filesystem.php | ||
https://github.com/symfony/var-exporter | ||
|
||
4) TermCount(): includes/src/TermCount.php | ||
https://github.com/Automattic/lightweight-term-count-update. | ||
|
||
-- | ||
Updated: 26-Feb-2023 |
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.