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