I was hoping someone could clear the air for me when it comes to using transients with memcached. When running a plugin like w3-total-cache, are there any actual performance...
You would think that a transient set to expire at a certain time, would exist until that time. Unfortunately it seems they are disappearing from the database earlier, both...
Are WP transients specific to the user-session or can they be accessed from any session anywhere? Since they are written to the DB, I would imagine they are public...
I’ve recently come across the Transients API in WordPress in hopes of improving the performance of the plugin that I’m trying to write. Basically the plugin is storing product...
I have a big site for a client, and as it is a really customized wordpress installation with lots of extensions on functionality, I can’t use the caching plugins....
I am trying to use get_transient() method in my WordPress, I have read the document and seems like I am doing what has been described in the docs. I...
Today I run a test over my db to explore the speed difference between accessing a key from options, custom table & transients. I ran the test for 1000...
I have around 20 wp_cron() functions like the following code. Almost all crons run hourly; a few are daily. if ( ! wp_next_scheduled( 'my_task_hook' ) ) { wp_schedule_event( time(),...
Why does Java have transient fields? 1 15 The transient keyword in Java is used to indicate that a field should not be part of the serialization (which means...
I’ve never used the Transients API before and was wondering if anyone has guidance on when to use it. The Codex article implies that as a theme developer I...