4

通过使用 json api 插件将数据从站点提供给应用程序,我使用 Wordpress 作为 iPhone 应用程序的提要。然而它很慢,所以我试图找到一种方法来缓存请求。我还没有找到一个真正有效/解释如何做到这一点的解决方案,任何人都可以提供任何指导哦,如何/是否可以做到这一点?

非常感谢

4

1 回答 1

5

我建议使用wordpress 瞬态 API。例如。

 $transient_name = 'some_api_req_param1';
 $transient_value = get_transient($transient_name); 
 if( false !== $transient_value){
  echo $transient_value;
 }else{
  //$result = ...
  //fetch your data here
  //in the end save the data in the transient
  $expiration_time = 60*60*24*7;//in second 
  set_transient($transient_name,$result,$expiration_time);
}
于 2013-05-31T17:55:05.087 回答