Download the PHP package smart-core/accelerator-cache-bundle without Composer

On this page you can find all versions of the php package smart-core/accelerator-cache-bundle. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.

FAQ

After the download, you have to make one include require_once('vendor/autoload.php');. After that you have to import the classes with use statements.

Example:
If you use only one package a project is not needed. But if you use more then one package, without a project it is not possible to import the classes with use statements.

In general, it is recommended to use always a project to download your libraries. In an application normally there is more than one library needed.
Some PHP packages are not free to download and because of that hosted in private repositories. In this case some credentials are needed to access such packages. Please use the auth.json textarea to insert credentials, if a package is coming from a private repository. You can look here for more information.

  • Some hosting areas are not accessible by a terminal or SSH. Then it is not possible to use Composer.
  • To use Composer is sometimes complicated. Especially for beginners.
  • Composer needs much resources. Sometimes they are not available on a simple webspace.
  • If you are using private repositories you don't need to share your credentials. You can set up everything on our site and then you provide a simple download link to your team member.
  • Simplify your Composer build process. Use our own command line tool to download the vendor folder as binary. This makes your build process faster and you don't need to expose your credentials for private repositories.
Please rate this library. Is it a good library?

Informations about the package accelerator-cache-bundle

Provide a command line to clear PHP Accelerator cache from the console.

The problem with Accelerator cache (like APC, Wincache, Opcache) is that it's impossible to clear it from command line. Because even if you enable APC for PHP CLI, it's a different instance than, say, your Apache PHP or PHP-CGI APC instance.

The trick here is to create a file in the web dir, execute it through HTTP, then remove it.

Prerequisite

If you want to clear Apache part of APC, you will need to enable allow_url_fopen in php.ini to allow opening of URL object-like files, or set the curl option.

Installation

  1. Add it to your composer.json:

    or:

  2. Add this bundle to your application kernel:

  3. Configure accelerator_cache service:

  4. If you want to use curl rather than fopen set the following option:

Usage

Clear all Accelerator cache (opcode+user):

$ php app/console cache:accelerator:clear

Clear only opcode cache:

$ php app/console cache:accelerator:clear --opcode

Clear only user cache:

$ php app/console cache:accelerator:clear --user

Clear the CLI cache (opcode+user):

$ php app/console cache:accelerator:clear --cli

Composer usage

To automatically clear accelerator cache after each composer install / composer update, you can add a script handler to your project's composer.json :

+You can specify command arguments in the extra section:

Capifony usage

To automatically clear apc cache after each capifony deploy you can define a custom task

and add these hooks

Nginx configuration

If you are using nginx and limiting PHP scripts that you are passing to fpm you need to allow 'apc' prefixed php files. Otherwise your web server will return the requested PHP file as text and the system won't be able to clear the accelerator cache.

Example configuration:


All versions of accelerator-cache-bundle with dependencies

PHP Build Version
Package Version
Requires symfony/framework-bundle Version >=2.1
symfony/console Version >=2.1
Composer command for our command line client (download client) This client runs in each environment. You don't need a specific PHP version etc. The first 20 API calls are free. Standard composer command

The package smart-core/accelerator-cache-bundle contains the following files

Loading the files please wait ....