We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
wp transient list
1 parent 8dd5a11 commit 80aa8e1Copy full SHA for 80aa8e1
src/Transient_Command.php
@@ -296,6 +296,10 @@ public function type() {
296
public function list_( $args, $assoc_args ) {
297
global $wpdb;
298
299
+ if ( wp_using_ext_object_cache() ) {
300
+ WP_CLI::warning( 'Transients are stored in an external object cache, and this command only shows those stored in the database.' );
301
+ }
302
+
303
$network = Utils\get_flag_value( $assoc_args, 'network', false );
304
$unserialize = Utils\get_flag_value( $assoc_args, 'unserialize', false );
305
$human_readable = Utils\get_flag_value( $assoc_args, 'human-readable', false );
0 commit comments