Cacheクラス PEAR Cache_Lite を使ってみる。 インストールはコマンド一発。簡単。 pear install Cache_Lite ソースは下記のような感じ // クラス読み込み require_once('Cache/Lite.php'); // IDのセット $cache_id = '123456'; // オプション $options = array( 'cacheDir' => '/tmp/', 'caching' => 'true', // キャッシュを有効に 'automaticSerialization' => 'true', // 配列を保存可能に 'lifeTime' => 1800, // 60*30(生存時間:30分) 'automaticCleaningFactor' => 200, // 自動で古いファイルを削除(1/200の確率で実行) 'ha