Skip to content

Commit

Permalink
add hint to disable symfony secrets
Browse files Browse the repository at this point in the history
  • Loading branch information
shyim authored Nov 28, 2024
1 parent 279e240 commit 861e182
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions guides/hosting/performance/performance-tweaks.md
Original file line number Diff line number Diff line change
Expand Up @@ -247,3 +247,14 @@ shopware:
cache_compression: true
cache_compression_method: 'zstd'
```

## Disable Symfony Secrets

Symfony (the used web framework of Shopware) has a secret implementation. That allows to encrypt environment variables and decrypt them on the fly. If you don't use Symfony Secrets, you can disable this complete behaviour which saves some CPU cycles while booting the Application.

```yaml
framework:
secrets:
enabled: false
```

0 comments on commit 861e182

Please sign in to comment.