# Scope Registration

CacheBox has a nifty little feature that enables itself to leech onto a specific scope in memory. It basically can auto-register itself in your environment with no further need for persistence or just to expand its location. By default CacheBox registers itself in application scope with a key of **cacheBox**, but you have complete control on how the scope registration should work.

## Customizable Keys:

| Key     | Type    | Required | Default       | Description                                               |
| ------- | ------- | -------- | ------------- | --------------------------------------------------------- |
| enabled | boolean | false    | *true*        | Enable scope registration                                 |
| scope   | string  | false    | *application* | The ColdFusion scope to persist on                        |
| key     | string  | false    | *cachebox*    | The name of the key in the ColdFusion scope to persist on |

Example:

```javascript
// The CacheBox configuration structure DSL
cacheBox = {
    scopeRegistration = {
        enabled = true,
        scope   = "application",
        key     = "cacheBox"
    },
};
```


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://cachebox.ortusbooks.com/2.1.0/cachebox-configuration/cachebox-dsl/scope-registration.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
