rockschtar / wordpress-object-storage
Transients in green
Package info
github.com/rockschtar/wordpress-object-storage
Type:wordpress-muplugin
pkg:composer/rockschtar/wordpress-object-storage
Requires
- php: >=8.4
Requires (Dev)
- brain/monkey: ^2.2
- friendsofphp/php-cs-fixer: ^3.95
- phpunit/phpunit: ^9.6
- yoast/phpunit-polyfills: ^4.0
This package is auto-updated.
Last update: 2026-07-08 07:45:59 UTC
README
Description
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.
Requirements
- PHP >= 8.4
- WordPress >= 6.8
Install
Composer
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
Manual
Download wordpress-object-storage-<version>.zip from the
latest release and install
it like any other plugin (the zip ships with its own autoloader).
Usage
Set object
// 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.
Get 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.
Delete object
rsos_delete_object('my-key');
ObjectStorage class
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 not
License
rockschtar/wordpress-object-storage is open source and released under MIT license. See LICENSE.md file for more info.