Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion source/docs/v3/tenancy-bootstrappers.blade.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ Note that only the **default** connection is switched. If you use another connec
The cache tenancy bootstrapper replaces the Laravel's CacheManager instance with a custom CacheManager that adds tags with the current tenant's ids to each cache call. This scopes cache calls and lets you selectively clear tenants' caches:

```php
php artisan cache:clear --tag=tenant_123
php artisan cache:clear --tags=tenant_123
```

Note that you must use a cache store that supports tagging, e.g. Redis.
Expand Down