8000 Added cache data collector and profiler page by Nyholm · Pull Request #21065 · symfony/symfony · GitHub
[go: up one dir, main page]

Skip to content

Added cache data collector and profiler page #21065

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 9 commits into from
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Changed order
  • Loading branch information
Nyholm committed Jan 14, 2017
commit 9e12faca1c8362e99ab579ec4be570d58f0fdaaa
Original file line number Diff line number Diff line change
Expand Up @@ -57,14 +57,14 @@
<span class="value">{{ '%0.2f'|format(collector.totals.time * 1000) }} ms</span>
<span class="label">Total time</span>
</div>
<div class="metric">
<span class="value">{{ collector.totals.calls }}</span>
<span class="label">Total hits</span>
</div>
<div class="metric">
<span class="value">{{ collector.totals.reads }}</span>
<span class="label">Total reads</span>
</div>
<div class="metric">
<span class="value">{{ collector.totals.hits }}</span>
<span class="label">Total hits</span>
</div>
<div class="metric">
<span class="value">{{ collector.totals['hits/reads'] }}</span>
<span class="label">Hits/reads</span>
Expand Down
0