4

json APIプラグインを使用してサイトからアプリケーションにデータをフィードすることにより、WordpressをiPhoneアプリのフィードとして使用しています。ただし、かなり遅いので、リクエストをキャッシュする方法を見つけようとしています。実際に機能する/これをうまく行う方法を説明するソリューションを見つけていません。これを行う方法/可能性について誰かがガイダンスを提供できますか?

どうもありがとう

4

1 に答える 1

5

wordpress transient 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 に答える