Codeigniter 启用分析器并打开输出缓存

发布于 2024-12-11 08:23:11 字数 323 浏览 0 评论 0原文

当还启用输出缓存时,我对输出基准分析器有问题,但基准在视图中不可视化。

我正在做。

class  Home extends MX_Controller {


    function Home()
    {
           parent::__construct();

           $this->output->cache(20000);
           $this->output->enable_profiler(TRUE);
   }

我如何可视化基准测试以查看启用缓存的页面的速度有多快?

i have problem with output benchmark profiler when also output cache is enabled,the benchmark does is not visualized in views.

I'm doing.

class  Home extends MX_Controller {


    function Home()
    {
           parent::__construct();

           $this->output->cache(20000);
           $this->output->enable_profiler(TRUE);
   }

how can i visualize the benchmark to see how faster is the page with cache on?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

请持续率性 2024-12-18 08:23:11

为了使探查器正常工作,您需要设置标记,用作对应用程序进行基准测试的起点和终点。
因为,引用手册

注意:Benchmark 标签不会被缓存,因此您仍然可以查看您的页面
启用缓存时的加载速度。

无论您想在哪里开始使用(您不需要初始化此类):

$this->benchmark->mark('starting_point');

并且,当您想结束它时:

$this->benchmark->mark('ending_point');

然后结果:

echo $this->benchmark->elapsed_time('starting_point', 'ending_point');

您可以使用任意多个,当然只需给它们一个不同的名称即可。

In order for the profiler to work you need to set markers, used as a start and end point to benchmark your application.
Because, quoting from the manual:

Note: The Benchmark tag is not cached so you can still view your page
load speed when caching is enabled.

Wherever you want to start use (you don't need to initialize this class):

$this->benchmark->mark('starting_point');

And, when you want to end it:

$this->benchmark->mark('ending_point');

Then the result:

echo $this->benchmark->elapsed_time('starting_point', 'ending_point');

You can use as many as you want, just give them a different name of course.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文