Changeset 2199863
- Timestamp:
- 11/24/2019 05:16:20 AM (6 years ago)
- Location:
- autoclear-autoptimize-cache
- Files:
-
- 4 edited
-
tags/1.0/autoclear-autoptimize-cache.php (modified) (3 diffs)
-
tags/1.0/readme.txt (modified) (1 diff)
-
trunk/autoclear-autoptimize-cache.php (modified) (3 diffs)
-
trunk/readme.txt (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
autoclear-autoptimize-cache/tags/1.0/autoclear-autoptimize-cache.php
r2082934 r2199863 10 10 * Text Domain: autoclear-autoptimize-cache 11 11 * Domain Path: /languages/ 12 * Version: 1. 0.012 * Version: 1.1.0 13 13 * 14 14 * WC requires: >=4.0.0 15 * WC tested to: 5. 215 * WC tested to: 5.3 16 16 * 17 17 * @package Autoclear_Autoptimize_Cache … … 136 136 $sanitary_values['maximum_autoptimize_cache_file_size_0'] = $input['maximum_autoptimize_cache_file_size_0']; 137 137 } 138 139 138 return $sanitary_values; 140 139 } … … 153 152 ?> 154 153 <select name="autoclear_autoptimize_cache_settings_option_name[maximum_autoptimize_cache_file_size_0]" id="maximum_autoptimize_cache_file_size_0"> 154 <?php $selected = (isset( $this->autoclear_autoptimize_cache_settings_options['maximum_autoptimize_cache_file_size_0'] ) && $this->autoclear_autoptimize_cache_settings_options['maximum_autoptimize_cache_file_size_0'] === '64') ? 'selected' : '' ; ?> 155 <option value="64" <?php echo $selected; ?>>64 Megabytes</option> 155 156 <?php $selected = (isset( $this->autoclear_autoptimize_cache_settings_options['maximum_autoptimize_cache_file_size_0'] ) && $this->autoclear_autoptimize_cache_settings_options['maximum_autoptimize_cache_file_size_0'] === '128') ? 'selected' : '' ; ?> 156 157 <option value="128" <?php echo $selected; ?>>128 Megabytes</option> -
autoclear-autoptimize-cache/tags/1.0/readme.txt
r2082934 r2199863 46 46 That depends on a few factors, such as site traffic, using a theme with lots of options, and hosting resources available. You can experiment to find the best balance between performance and cache size. Generally, the following are good assumptions: 47 47 48 1. 128 MB for smallblogging site on entry level shared hosting.48 1. 128 MB for medium blogging site on entry level shared hosting. 49 49 2. 512 MB for sites running complex themes and plugins on shared or small VPS. 50 50 3. 768 MB for sites running complex themes and plugins, e-commerce, memberships on med VPS. -
autoclear-autoptimize-cache/trunk/autoclear-autoptimize-cache.php
r2082934 r2199863 10 10 * Text Domain: autoclear-autoptimize-cache 11 11 * Domain Path: /languages/ 12 * Version: 1. 0.012 * Version: 1.1.0 13 13 * 14 14 * WC requires: >=4.0.0 15 * WC tested to: 5. 215 * WC tested to: 5.3 16 16 * 17 17 * @package Autoclear_Autoptimize_Cache … … 136 136 $sanitary_values['maximum_autoptimize_cache_file_size_0'] = $input['maximum_autoptimize_cache_file_size_0']; 137 137 } 138 139 138 return $sanitary_values; 140 139 } … … 153 152 ?> 154 153 <select name="autoclear_autoptimize_cache_settings_option_name[maximum_autoptimize_cache_file_size_0]" id="maximum_autoptimize_cache_file_size_0"> 154 <?php $selected = (isset( $this->autoclear_autoptimize_cache_settings_options['maximum_autoptimize_cache_file_size_0'] ) && $this->autoclear_autoptimize_cache_settings_options['maximum_autoptimize_cache_file_size_0'] === '64') ? 'selected' : '' ; ?> 155 <option value="64" <?php echo $selected; ?>>64 Megabytes</option> 155 156 <?php $selected = (isset( $this->autoclear_autoptimize_cache_settings_options['maximum_autoptimize_cache_file_size_0'] ) && $this->autoclear_autoptimize_cache_settings_options['maximum_autoptimize_cache_file_size_0'] === '128') ? 'selected' : '' ; ?> 156 157 <option value="128" <?php echo $selected; ?>>128 Megabytes</option> -
autoclear-autoptimize-cache/trunk/readme.txt
r2082934 r2199863 5 5 Tags: autoptimize, cache, pagespeed, utilities 6 6 Requires at least: 4.0 7 Tested up to: 5. 27 Tested up to: 5.3 8 8 Stable tag: 1.0.0 9 9 License: GPLv2 or later … … 46 46 That depends on a few factors, such as site traffic, using a theme with lots of options, and hosting resources available. You can experiment to find the best balance between performance and cache size. Generally, the following are good assumptions: 47 47 48 1. 128 MB for small blogging site on entry level shared hosting. 49 2. 512 MB for sites running complex themes and plugins on shared or small VPS. 50 3. 768 MB for sites running complex themes and plugins, e-commerce, memberships on med VPS. 51 4. 1 GB for large sites running complex themes, plugins, e-commerce, memberships on med to large VPS. 48 1. 64 MB for small blogging site on entry level shared hosting. 49 2. 128 MB for medium blogging site on entry level shared hosting. 50 3. 512 MB for sites running complex themes and plugins on shared or small VPS. 51 4. 768 MB for sites running complex themes and plugins, e-commerce, memberships on med VPS. 52 5. 1 GB for large sites running complex themes, plugins, e-commerce, memberships on med to large VPS. 52 53 53 54 Again, experiment with different settings and find the best option for your particular WordPress site. … … 84 85 - Initial release 85 86 87 ### 2.0.0 88 89 - Add 64 MB maximum cache option for smaller faster sites 90 86 91 ## Roadmap 87 92
Note: See TracChangeset
for help on using the changeset viewer.