appstract / laravel-opcache by gizburdt

PHP OPcache Artisan commands for Laravel.
2,999,533
1,314
24
Package Data
Maintainer Username: gizburdt
Maintainer Contact: mail@appstract.nl (Olav van Schie)
Package Create Date: 2017-02-06
Package Last Update: 2023-07-24
Home Page:
Language: PHP
License: MIT
Last Refreshed: 2024-04-16 15:05:44
Package Statistics
Total Downloads: 2,999,533
Monthly Downloads: 64,501
Daily Downloads: 3,994
Total Stars: 1,314
Total Watchers: 24
Total Forks: 116
Total Open Issues: 20

Laravel OPcache

Latest Version on Packagist Software License Total Downloads

This package contains some useful Artisan commands to work with PHP OPcache.

If you want to learn more about OPcache and what it can do for your Laravel app, you can read the article on Medium.

Requirements

This package requires Laravel 5.5 or newer. For older Laravel versions (5.1 or newer), you can use version 1.3.0

Installation

You can install the package via Composer:

composer require appstract/laravel-opcache

You can publish the config file with:

php artisan vendor:publish --provider="Appstract\Opcache\OpcacheServiceProvider" --tag="config"

For Lumen:

// bootstrap/app.php
$app->register(Appstract\Opcache\OpcacheServiceProvider::class);
$app->configure('opcache');

// config/app.php
'url' => env('APP_URL'),

// config/opcache.php
'directories' => [
    base_path('app'),
    base_path('bootstrap'),
    base_path('public'),
    base_path('routes'),
    base_path('vendor/appstract'),
    base_path('vendor/composer'),
    base_path('vendor/laravel/lumen-framework'),
    base_path('vendor/illuminate'),
]

Make sure your APP_URL is set correctly in .env. If you want to set a different url to call the OPcache routes (for use with a load balancer for example), you can set OPCACHE_URL.

Usage

Login to your server/vm and run one of the commands.

Requests are only excepted from the same IP as the server IP.

Clear OPcache:

php artisan opcache:clear

Show OPcache config:

php artisan opcache:config

Show OPcache status:

php artisan opcache:status

Pre-compile your application code:

php artisan opcache:optimize

Programmatic usage:

use Appstract\Opcache\OpcacheFacade as OPcache;

...

OPcache::clear();

Contributing

Contributions are welcome, thanks to y'all :)

About Appstract

Appstract is a small team from The Netherlands. We create (open source) tools for webdevelopment and write about related subjects on Medium. You can follow us on Twitter, buy us a beer or support us on Patreon.

License

The MIT License (MIT). Please see License File for more information.