Skip to Content

Clear Cache

< 1 Minute

Data retrieval from a database can often be slow and CPU intensive. For this reason, several in-memory cache stores exist. These stores allow you to temporarily store commonly retrieved data so it's available for subsequent requests without accessing a database.

Usage

SupportPro provides a simple CLI command which will clear your configured cache store.

Usage on Docker

docker exec -u www-data supportpro php artisan cache:clear

Usage on Linux

php artisan cache:clear

Example Output

Application cache cleared!
Clear Cache