DEV Community

Cover image for WP Snippet #008 Using transients to cache data.
Stephan Nijman
Stephan Nijman

Posted on • Originally published at since1979.dev

WP Snippet #008 Using transients to cache data.

Originally posted on my website on March 4th 2020

How to cache data using WordPress transients

In the previous snippet we discussed how to use Php to fetch some data from a remote Api. These Api request take time to resolve, and should preferably be cached to speed up page load. In this snippet we will take a look at WordPress transients which can be used to cache our data.

"The Transients API is very similar to the Options API but with the added feature of an expiration time, which simplifies the process of using the wp_options database table to temporarily store cached information." ~ Common APIs Handbook

Maybe Cache function

In the code above we create a new function called maybeCache that accepts three parameters.

  • $cache (String). Tha name of our cache/transient.
  • $time (Int): Time until expiration in seconds.
  • $callback (Function): A function that produces the data to cache.

Inside our new function we first check if our data is already cached by calling the get_transient function and passing it the name of our cache/transient. If there is a valid transient we simply return that data.

We then use the is_callable function to check if the passed in callback is a valid function or not. If not we return a error massage using the wp_die function.

Next we use the call_user_func function to call the provided callback function and store its return value in a variable $data. We immediately pass the $data variable along with the $name and $time variables to the set_transient function which will .store our cache/transient in the database.

Finally we return the cached $data variable.

Using the maybeCache function

In the snippet below we combine our new maybeCache function with the do_remote_get function from the previous snippet/article.

Here we use the maybeCache function and pass it:

  • remote_posts_data: As the name of our transient.
  • 7200: The time in secconds that our cache is valid (7200s = 2 hours).
  • A anonymous callback function.

Inside our anonymous callback function we call the do_remote_get function to fetch some posts data from a remote Api and return that data.

On first execution the maybeCache function will store the data from the Api inside the database. And on subsequent requests it will return that cached data until our 2 our expiration time has passed, after which the data is invalid and must be called from the Api, and stored again.

Finally, as in the previous snippet, we loop over the posts and echo out their titles.

Note: WordPress transient can also be used to cache results of expensive database queries or html fragments that take a lot of processing. But remember that the transients Api uses database queries them self to retrieve their data so be wise and don't over use them.

Follow

Found this post helpful? Follow me on twitter @Vanaf1979 or here on Dev.to @Vanaf1979 to be notified about new articles, and other WordPress development related resources.

Thanks for reading

Top comments (3)

Collapse
 
carlosguzman profile image
Carlos Guzmán

Thanks for sharing.

The first code snippet is not showing the function declaration.

Collapse
 
vanaf1979 profile image
Stephan Nijman

I have created an issue to see if this is something that can be fixed :) github.com/thepracticaldev/dev.to/...

Collapse
 
vanaf1979 profile image
Stephan Nijman • Edited

Hey Carlos,

Thanks for letting me know. Sometimes the gists get mixed up. When you refresh the page it should show up!

I havent figured out yet if this is a github or a dev.to bug.

Thanks