Tagged Questions
1
vote
2answers
21 views
How to purge all transient caches?
Is there an easy way to delete all transient caches? A plugin maybe? Or like in drupal "drush cc all"?
0
votes
1answer
74 views
Using a wildcard with delete_transient()
I am using the Transients API to hold the output for a gallery plugin's shortcode I created. Due to the number of images used and different layouts needed, the transient name looks lik the following:
...
1
vote
0answers
138 views
After Installing APC Object Cache Backend transients stopped working
My understanding is that once you enable the persistent object cache, your transients are no longer stored in wp_options, but in the cache.
Once I installed Mark Jaquith's APC Object Cache Backend, ...
0
votes
2answers
135 views
Transient api Caches confused
This code works for page 1
<?php
$paged1 = (get_query_var('paged')) ? get_query_var('paged') : 1;
$recent1 = get_transient( 'recent1' );
if ...
1
vote
1answer
80 views
Get the timout value of a saved transient?
Does anyone know if there is a Wordpress function to get the timeout value of a saved transient? I am using a transient with a 5 minute timeout to cache data from a web API call locally. Between ...
1
vote
2answers
255 views
WordPress Caching - Transients API or “update_user_meta ” Cronjob?
I'm trying to set user meta based on queries. Basically, things like IF the query returns true, set this or if not, set this (or don't set it, if it is true). This works great but the problem is I ...
1
vote
3answers
235 views
Transients vs CRON +Custom Fields: Caching Data Per Post
Wanted some opinions on a solution I'm trying to come up with:
I have a fan/enthusiast plugin I'm working on for fans of TV shows. One of the custom post types attached to the plugin is a release ...
1
vote
1answer
255 views
Transients API and multisite
we're using the Atlas HTML sitemap plugin, which caches the sitemap using the transients API with a call like:
set_transient( 'dmac_html_sitemap', $output, 60*60*24*7 );
Now, we also have a ...
1
vote
1answer
270 views
Transient / object cache maximum key length [duplicate]
Possible Duplicate:
Long option names fail silently?
The WordPress Transients API makes it easy to save expensive values and look them up later. If you install an object backend (such as ...