WordPress plugin that provides functions similar to transients but without their general behavior: transients may disappear at any time (for example when a persistent object cache evicts them), so code must never rely on them. Objects stored with this plugin persist until they expire or are deleted — nothing else removes them.
- Data is stored in the
wp_optionstable (never autoloaded), so it survives object cache evictions. - Optional expiration time per object; expired objects are cleaned up hourly by a WP-Cron job
(
rsos_delete_expired) and lazily on read. - Values are serialized automatically when needed — store scalars, arrays or objects as they are.
- PHP >= 8.4
- WordPress >= 6.8
For composer based WordPress projects (roots/bedrock or
johnpbloch/wordpress); the package is installed as a
must-use plugin (wordpress-muplugin):
composer require rockschtar/wordpress-object-storage
Download wordpress-object-storage-<version>.zip from the
latest release and install
it like any other plugin (the zip ships with its own autoloader).
// without expiration time: stored until deleted
rsos_set_object('my-key', 'my-value');
// with expiration time in seconds
rsos_set_object('my-key', 'my-value', DAY_IN_SECONDS);An expiration of 0 (default) means the object never expires. A negative expiration deletes the
object.
$value = rsos_get_object('my-key');Returns false if the object does not exist or is expired. Like get_option(), a stored value of
false is indistinguishable from a missing object.
rsos_delete_object('my-key');The rsos_* functions are thin wrappers around the ObjectStorage class, which offers a few more
methods:
use Rockschtar\WordPress\ObjectStorage\ObjectStorage;
$storage = new ObjectStorage();
$storage->set('my-key', ['foo' => 'bar'], HOUR_IN_SECONDS);
$storage->get('my-key'); // false|mixed
$storage->delete('my-key'); // bool
$storage->expires('my-key'); // expiration as unix timestamp, null if none
$storage->expiresAsDateTime('my-key'); // expiration as DateTime (site timezone), null if none
$storage->getItem('my-key'); // ObjectStorageItem with key, value and expiration
$storage->deleteExpired(); // delete all expired objects (what the cron job runs)
$storage->clear(); // delete ALL stored objects, expired or notrockschtar/wordpress-object-storage is open source and released under MIT license. See LICENSE.md file for more info.