> ## Documentation Index
> Fetch the complete documentation index at: https://docs.curator.interworks.com/llms.txt
> Use this file to discover all available pages before exploring further.

# usermgmt:warmcache

> Warm the cache for frontend users

Warms the cache for frontend users. When no user is specified, warms the cache for the configured priority group.

**Arguments:**

| Argument | Required | Description                           |
| -------- | -------- | ------------------------------------- |
| `user`   | No       | Username or user ID to warm cache for |

**Options:**

| Option    | Shortcut | Description                    |
| --------- | -------- | ------------------------------ |
| `--reset` |          | Reset the cache before warming |
| `--force` | `-f`     | Skip confirmation prompts      |

**Examples:**

```bash theme={null}
# Warm cache for the priority group
php artisan usermgmt:warmcache

# Warm cache for a specific user
php artisan usermgmt:warmcache jdoe

# Reset and warm cache
php artisan usermgmt:warmcache --reset
```
