Transient is sometimes empty
-
Hi,
Thanks for the great plugin. It works as expected most of the time, but sometimes the posts disappear although there are posts in the Jetpack stats.Looking at the transient
_transient_be_stats
it has a value ofa:0:{}
. Normally there are a number of post IDs inside it.be_stats_args
is set toarray( 'days' => 7, 'limit' => 100 )
and I am using this to display the posts:
$args = array( 'meta_key' => 'be_stats', 'posts_per_page' => 15, 'orderby' => 'meta_value_num', 'order' => 'ASC', ); $loop = new WP_Query( $args ); if( $loop->have_posts() ):
etc
If I clean out the empty transient manually, the posts show up again in the popular posts list. Perhaps this happens if the connection to wordpress.com is down when the transient runs out?
- The topic ‘Transient is sometimes empty’ is closed to new replies.