Plugin Directory

Changeset 2199863


Ignore:
Timestamp:
11/24/2019 05:16:20 AM (6 years ago)
Author:
jteague
Message:

Adding version 2.0

Location:
autoclear-autoptimize-cache
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • autoclear-autoptimize-cache/tags/1.0/autoclear-autoptimize-cache.php

    r2082934 r2199863  
    1010 * Text Domain:     autoclear-autoptimize-cache
    1111 * Domain Path:     /languages/
    12  * Version:         1.0.0
     12 * Version:         1.1.0
    1313 *
    1414 * WC requires:     >=4.0.0
    15  * WC tested to:    5.2
     15 * WC tested to:    5.3
    1616 *
    1717 * @package         Autoclear_Autoptimize_Cache
     
    136136            $sanitary_values['maximum_autoptimize_cache_file_size_0'] = $input['maximum_autoptimize_cache_file_size_0'];
    137137        }
    138 
    139138        return $sanitary_values;
    140139    }
     
    153152        ?>
    154153            <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>
    155156                <?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' : '' ; ?>
    156157                <option value="128" <?php echo $selected; ?>>128 Megabytes</option>
  • autoclear-autoptimize-cache/tags/1.0/readme.txt

    r2082934 r2199863  
    4646That 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:
    4747
    48 1.  128 MB for small blogging site on entry level shared hosting.
     481.  128 MB for medium blogging site on entry level shared hosting.
    49492.  512 MB for sites running complex themes and plugins on shared or small VPS.
    50503.  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  
    1010 * Text Domain:     autoclear-autoptimize-cache
    1111 * Domain Path:     /languages/
    12  * Version:         1.0.0
     12 * Version:         1.1.0
    1313 *
    1414 * WC requires:     >=4.0.0
    15  * WC tested to:    5.2
     15 * WC tested to:    5.3
    1616 *
    1717 * @package         Autoclear_Autoptimize_Cache
     
    136136            $sanitary_values['maximum_autoptimize_cache_file_size_0'] = $input['maximum_autoptimize_cache_file_size_0'];
    137137        }
    138 
    139138        return $sanitary_values;
    140139    }
     
    153152        ?>
    154153            <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>
    155156                <?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' : '' ; ?>
    156157                <option value="128" <?php echo $selected; ?>>128 Megabytes</option>
  • autoclear-autoptimize-cache/trunk/readme.txt

    r2082934 r2199863  
    55Tags: autoptimize, cache, pagespeed, utilities
    66Requires at least: 4.0
    7 Tested up to: 5.2
     7Tested up to: 5.3
    88Stable tag: 1.0.0
    99License: GPLv2 or later
     
    4646That 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:
    4747
    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.
     481.  64 MB for small blogging site on entry level shared hosting.
     492.  128 MB for medium blogging site on entry level shared hosting.
     503.  512 MB for sites running complex themes and plugins on shared or small VPS.
     514.  768 MB for sites running complex themes and plugins, e-commerce, memberships on med VPS.
     525.  1 GB for large sites running complex themes, plugins, e-commerce, memberships on med to large VPS.
    5253
    5354Again, experiment with different settings and find the best option for your particular WordPress site.
     
    8485-   Initial release
    8586
     87### 2.0.0
     88
     89-   Add 64 MB maximum cache option for smaller faster sites
     90
    8691## Roadmap
    8792
Note: See TracChangeset for help on using the changeset viewer.