Skip to content

Commit f39f81a

Browse files
committed
Vale remarks
1 parent a8ce9b9 commit f39f81a

3 files changed

Lines changed: 9 additions & 9 deletions

File tree

docs/infrastructure_and_maintenance/cache/persistence_cache.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -281,15 +281,15 @@ For more info on usage, see [Symfony Cache's documentation]([[= symfony_doc =]]/
281281
!!! caution "Always clear the persistence with `cache:pool:clear` command"
282282

283283
Running `php bin/console cache:clear` doesn't clear the persistence cache, even when you use a filesystem-based cache pool.
284-
284+
285285
You must always clear the persistence cache by running:
286286

287287
```bash
288-
php bin/console cache:pool:clear [cache-pool]
288+
php bin/console cache:pool:clear <cache-pool>
289289
```
290290

291-
The default cache pool is named `cache.tagaware.filesystem`.
292-
The default cache pool when running Redis or Valkey is named `cache.redis`.
291+
The default cache pool is named `cache.tagaware.filesystem`.
292+
The default cache pool when running Redis or Valkey is named `cache.redis`.
293293
If you have customized the persistence cache configuration, the name of your cache pool might be different.
294294

295295
Persistence cache prefixes it's cache using "ibx-". Clearing persistence cache can thus be done in the following ways:

docs/snippets/page_block_cache_clear.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
Persistence cache must be cleared after any modifications have been made to the block config in Page Builder, such as adding, removing or altering the page blocks, block attributes, validators or views configuration.
44

5-
To clear the persistence cache, run `php bin/console cache:pool:clear [cache-pool]` command.
5+
To clear the persistence cache, run `php bin/console cache:pool:clear <cache-pool>` command.
66
The default cache pool is named `cache.tagaware.filesystem`.
77
The default cache pool when running Redis or Valkey is named `cache.redis`.
88
If you have customized the [persistence cache configuration](https://doc.ibexa.co/en/latest/infrastructure_and_maintenance/cache/persistence_cache/#what-is-cached), the name of your cache pool might be different.

docs/update_and_migration/from_5.0/update_from_5.0.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -376,18 +376,18 @@ Update Symfony constraints in `composer.json` before updating the packages.
376376
To clear the persistence cache, for example after adding a [custom Page Builder block](create_custom_page_block.md), you must always run:
377377

378378
```bash
379-
php bin/console cache:pool:clear [cache-pool]
379+
php bin/console cache:pool:clear <cache-pool>
380380
```
381381

382-
The default cache pool is named `cache.tagaware.filesystem`.
383-
The default cache pool when running Redis or Valkey is named `cache.redis`.
382+
The default cache pool is named `cache.tagaware.filesystem`.
383+
The default cache pool when running Redis or Valkey is named `cache.redis`.
384384
If you have customized the persistence cache configuration, the name of your cache pool might be different.
385385

386386
For more information about persistence cache, see [Persistence cache](persistence_cache.md).
387387

388388
- Array-based PHP configuration format
389389

390-
As part of the [array-based PHP configuration format](https://symfony.com/blog/new-in-symfony-7-4-better-php-configuration), a `config/reference.php` file will be created.
390+
As part of the new [array-based PHP configuration format](https://symfony.com/blog/new-in-symfony-7-4-better-php-configuration), Symfony creates the `config/reference.php` file.
391391
You should commit this file to the repository.
392392

393393
4. Update Ibexa packages by running:

0 commit comments

Comments
 (0)