# Installing CacheBox

**CacheBox** can be installed as a standalone framework or included with the latest ColdBox Platform release, so it is unnecessary if you are within a ColdBox application.

## System Requirements

* Adobe ColdFusion 2018+
* Lucee 5+

## Standalone Installation

You can leverage [CommandBox](http://www.ortussolutions.com/products/commandbox) to install the standalone version of CacheBox with a simple command:

```bash
# Latest Version
box install cachebox

# Bleeding Edge
box install cachebox@be
```

This will install CacheBox as a dependency in your application into a folder called `cachebox`. You can then leverage the standalone namespace within your application: `cachebox.system.ioc`.

### Mappings

You will need the following mapping that points to the folder you installed `cachebox` into:

```cfscript
this.mappings[ "/cachebox" ] = "path.to.cachebox";
```

This will ensure that the appropriate libraries can find each other.

{% hint style="danger" %}
Remember that this only applies to the standalone approach.
{% endhint %}


---

# 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/getting-started/installing-cachebox.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.
