From 5a01629bb39b8f2b67cb55e1834e8f8edecce6ac Mon Sep 17 00:00:00 2001 From: warcooft Date: Tue, 30 Jul 2024 11:47:30 +0700 Subject: [PATCH] update documentation --- user_guide_src/source/installation/deployment.rst | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/user_guide_src/source/installation/deployment.rst b/user_guide_src/source/installation/deployment.rst index 0eb206ee9d04..74f56e7020bd 100644 --- a/user_guide_src/source/installation/deployment.rst +++ b/user_guide_src/source/installation/deployment.rst @@ -28,6 +28,21 @@ The ``spark optimize`` command performs the following optimizations: - Enabling `Config Caching`_ - Enabling `FileLocator Caching`_ +If you want disable or restore the actions above, run ``spark optimize -d`` +it will do a restore to default settings, as follow: + +.. versionadded:: 4.6.0 + +- `Reinstall Dev Packages`_ +- Disabling `Config Caching`_ +- Disabling `FileLocator Caching`_ + +Available options: + +- `-c` Enable only config caching. +- `-l` Enable only locator caching. +- `-d` Disable config and locator caching. + Composer Optimization =====================