apcu_cache_info
(PECL apcu >= 4.0.0)
apcu_cache_info — APCu のデータから、キャッシュされた情報を取得する
戻り値
キャッシュされたデータ(およびメタデータ)の配列を返します。
失敗した場合に false
を返します
注意: もし APC キャッシュのデータを取得できなかった場合、 apcu_cache_info() は警告を発生します。これが起こるのは、 一般的には APC が有効になっていない場合などです。
変更履歴
バージョン | 説明 |
---|---|
PECL apcu 3.0.11 |
limited パラメータが追加されました。
|
PECL apcu 3.0.16 |
"filehits " オプションが
cache_type パラメータに追加されました。
|
例
例1 apcu_cache_info() の例
<?php
print_r(apcu_cache_info());
?>
上の例の出力は、 たとえば以下のようになります。
Array ( [num_slots] => 2000 [ttl] => 0 [num_hits] => 9 [num_misses] => 3 [start_time] => 1123958803 [cache_list] => Array ( [0] => Array ( [filename] => /path/to/apcu_test.php [device] => 29954 [inode] => 1130511 [type] => file [num_hits] => 1 [mtime] => 1123960686 [creation_time] => 1123960696 [deletion_time] => 0 [access_time] => 1123962864 [ref_count] => 1 [mem_size] => 677 ) [1] => Array (...iterates for each cached file) )
参考
- APCu 設定ディレクティブ
- APCUIterator::getTotalSize() - キャッシュのサイズの合計を取得する
- APCUIterator::getTotalHits() - キャッシュヒットの総数を取得する
- APCUIterator::getTotalCount() - 総数を取得する
+add a note
User Contributed Notes 1 note
RQuadling at GMail dot com ¶
2 years ago
If you get the following warning when using APCu functions via PHP's CLI SAPI:
PHP Warning: apcu_cache_info(): No APC info available. Perhaps APC is not enabled? Check apc.enabled in your ini file
then check the status of `apc.enable_cli`. This is a separate INI entry for enabling APC via the CLI SAPI.
↑ and ↓ to navigate •
Enter to select •
Esc to close
Press Enter without
selection to search using Google