oopress / caching
Collection of PSR-16 compliant cache drivers - some specific for Wordpress, but others agnostic.
Requires
- psr/simple-cache: ^3.0
This package is auto-updated.
Last update: 2024-11-05 14:18:29 UTC
README
Oopress PHP PSR-16 cache drivers. Comes with the basic PSR compliant OOP approach possibility, but can also be used functionaly, from caching "high order functions" to be explained below. For now, it comes with drivers to manage file cache, a MySQL custom table cache adjusted for Wordpress, a Memcached and a Redis drivers. The classes can be used separatedly in any implementation, but also inside two high order functions: withCache()
and withCachedQuery()
.
Agnostic caching drivers
Except for WPDB-based MySQL cache driver, all drivers in this package can also be used outside of Wordpress context. As PSR compliant drivers, they can be in any PHP script - similarly, the high order functions that you find in this package can also have other PSR-16 compliant cache objects injected. Using each driver is simple, although some of them have particular parameters. Here's an example for Redis:
require_once('vendor/autoload.php'); // Connect to Redis server (replace with your own configuration) $redisCache = new Oopress\Cache\RedisCache('localhost', 6379); // Set a value in the cache with a 10-minute TTL $redisCache->set('my_data', 'This is cached data!', 600); // Retrieve the cached value $cachedData = $redisCache->get('my_data'); if ($cachedData !== false) { echo "Retrieved data from cache: " . $cachedData; } else { // Data not found in cache, fetch it from your application logic // ... } // Delete a key from the cache $redisCache->delete('my_data'); // Check if a key exists in the cache $exists = $redisCache->has('my_data'); // Clear the entire cache $redisCache->clear(); // Store multiple values with different TTLs $values = [ 'key1' => 'value1', 'key2' => 'value2', ]; $redisCache->setMultiple($values, [ 'key1' => 300, // 5 minutes 'key2' => null, // No expiration ]);
For the MySQL cache, the class will assume you are in a Wordpress context, so WP's class wpdb is to be used by the driver. Like this:
use Oopress\Cache\MySqlCache; // Create a new MySQL cache instance $mysqlCache = new MySqlCache(3600, 'caching_table'); // Default TTL of 1 hour, and table name defaults to chached_requests // Set a value in the cache $mysqlCache->set('my_key', 'This is my value'); // Retrieve the value $value = $mysqlCache->get('my_key'); // Delete a value $mysqlCache->delete('my_key'); // Clear the entire cache $mysqlCache->clear();
withCachedQuery()
Function
This function is designed to cache the results of specific WordPress queries. It takes a cache interface, an expiration time, and a query type as input. It returns a closure that, when called with query arguments, will:
- Check the Cache: It generates a cache key based on the query arguments and checks if the result is already cached.
- Execute the Query: If the result isn't cached, it executes the specified query (WP_Query, WP_Term_Query, WP_Comment_Query, or a custom user query).
- Cache the Result: The result is serialized and cached with the generated cache key and expiration time.
- Return the Result: The cached or freshly fetched result is returned.
Key Points:
- Caching Strategy: Caching is based on query arguments, ensuring that identical queries are not executed multiple times.
- Query Types: The function supports caching for various query types: posts, terms, users, and comments.
- Expiration: The $expires parameter can be a DateTime object or an integer representing seconds.
- Serialization: Results are serialized before caching and deserialized when retrieved.
Example
// Instantiate a FileCache instance $cacheDir = '/path/to/cache/directory'; $cache = new FileCache($cacheDir); // Cache a post query for 1 hour $expireTime = new DateTime('+1 hour'); $cachedPostQuery = withCachedQuery($cache, $expireTime, 'post'); // Use the cached query $posts = $cachedPostQuery([ 'post_type' => 'post', 'posts_per_page' => 10, ]);
withCache()
Function
This function is a more generic caching mechanism that can be used to cache the results of any callable function or method. It takes a cache interface and an expiration time as input. It returns a closure that, when called with a callable and its arguments, will:
- Check the Cache: It generates a cache key based on the callable's reflection and arguments.
- Execute the Callable: If the result isn't cached, it executes the provided callable with the given arguments.
- Cache the Result: The result is serialized and cached with the generated cache key and expiration time.
- Return the Result: The cached or freshly computed result is returned.
Key Points:
- Generic Caching: This function can be used to cache the results of any PHP function or method.
- Flexible Caching: The $process parameter can be a closure, a string (function name), or an array (method call).
- Cache Key Generation: Cache keys are generated based on the callable's reflection and arguments, ensuring unique keys for different calls.
Example
// Cache a custom function for 5 minutes $expireTime = new DateTime('+5 minutes'); $cachedFunction = withCache($cache, $expireTime); // Use the cached function $result = $cachedFunction(function () { // Some expensive operation return slow_calculation(); }); // Cache a static method for 1 day $expireTime = new DateTime('+1 day'); $cachedStaticMethod = withCache($cache, $expireTime); // Use the cached static method $result = $cachedStaticMethod([MyClass::class, 'staticMethod'], 'arg1', 'arg2');
Use Cases:
- Performance Optimization: Reduce database queries and improve page load times by caching frequently used data.
- API Rate Limiting: Cache API responses to avoid exceeding rate limits.
- Reducing Server Load: Offload processing to the cache, especially for computationally expensive tasks.
By using these functions, you can significantly improve the performance of your WordPress applications.
JS like syntax:
A JS like syntax can also be used with PHP closures, so the next arguments can be passed directly to the Closure, like this.
// Cache a custom function for 5 minutes $expireTime = new DateTime('+5 minutes'); $result = withCache($cache, $expireTime)(function () { return 'Hello, world!'; });