Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/benbender/opcacheprofilerbundle
This Bundle provides the status and an overview about Opcache/ZendOptimizer+ inside the Symfony2-Toolbar.
https://github.com/benbender/opcacheprofilerbundle
Last synced: 10 days ago
JSON representation
This Bundle provides the status and an overview about Opcache/ZendOptimizer+ inside the Symfony2-Toolbar.
- Host: GitHub
- URL: https://github.com/benbender/opcacheprofilerbundle
- Owner: benbender
- Created: 2013-03-18T14:05:36.000Z (over 11 years ago)
- Default Branch: master
- Last Pushed: 2015-08-10T04:32:29.000Z (over 9 years ago)
- Last Synced: 2024-08-24T17:53:34.178Z (3 months ago)
- Language: PHP
- Size: 191 KB
- Stars: 7
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
OpcacheProfilerBundle
=====================This Bundle provides the status and an overview about Opcache/ZendOptimizer+ inside
the Symfony2-Toolbar.It is compatible with ZendOptimizer+ on PECL for PHP 5.2.*, 5.3.*, 5.4.* and the
renamed Opcache, which is part of the PHP 5.5 core.Installation
------------### Using composer ###
**Note:** Check out this [gist](https://gist.github.com/2488761) if you want to use `composer` with Symfony2 v2.0.x!
Add the `codepoet/opcache-profiler-bundle` package to your `require` section in the `composer.json` file.
``` json
{
"require": {
"codepoet/opcache-profiler-bundle": "1.*"
}
}
```Usage
-----Per default the listing of cached files is deactivated cause it uses much memory to keep the filelist
available. If you want to see it anyway, put this into your `config.yml`:``` yaml
codepoet_opcache_profiler:
data_collector:
show_filelist: true
```License
-------This bundle is under the MIT license. See [Resources/meta/LICENSE](https://github.com/benbender/OpcacheProfilerBundle/blob/master/Resources/meta/LICENSE).
Changelog
---------This Changelog of this bundle can be found here: [Resources/meta/Changelog.md](https://github.com/benbender/OpcacheProfilerBundle/blob/master/Resources/meta/Changelog.md).
Reporting an issue or a feature request
---------------------------------------Issues and feature requests are tracked in the [Github issue tracker](https://github.com/benbender/OpcacheProfilerBundle/issues).
When reporting a bug, it may be a good idea to reproduce it in a basic project
built using the [Symfony Standard Edition](https://github.com/symfony/symfony-standard)
to allow developers of the bundle to reproduce the issue by simply cloning it
and following some steps.