diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index beaa176249..612af6a89b 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -436,6 +436,14 @@ composer lint composer lint ``` +## Clearing the Cache + +If you need to clear the cache, you can do so by running the following command: + +```bash +docker compose exec redis redis-cli FLUSHALL +``` + ## Tutorials From time to time, our team will add tutorials that will help contributors find their way in the Appwrite source code. Below is a list of currently available tutorials: diff --git a/app/http.php b/app/http.php index b9b4d19333..3edd6e8643 100644 --- a/app/http.php +++ b/app/http.php @@ -92,7 +92,6 @@ $http->on('start', function (Server $http) use ($payloadSize, $register) { $collections = Config::getParam('collections', []); try { - $redis->flushAll(); Console::success('[Setup] - Creating database: appwrite...'); $dbForConsole->create(); } catch (\Exception $e) {