2

In phpinfo, there is a list of directives but they are not changing at all

I see XCache is there by 'php -v'

But how can I monitor the caching? Like how many scripts are cached or how much space/memory it used?

Warren P
  • 65,725
  • 40
  • 181
  • 316
Hao
  • 6,291
  • 9
  • 39
  • 88

1 Answers1

1

You can use the default xcache admin page to get statistics and details on cached objects.

Please read the official HOW-TO.

You could either write your own script using XCache API.

FbnFgc
  • 1,666
  • 16
  • 19
  • Have had the idea XCache had been using a lot of memory on my PHP 5.2 Fast CGI Setup. Now that I use PHP 5.3 CGI and no XCache the memory usage has gone down a lot. Will try this tool when Dreamhost has added XCache to PHP 5.3 unless they go for APC.. – rhand Apr 01 '13 at 02:35