# Cache Providers

We have shipped CacheBox with several CacheBox providers that you can use in your applications. There are basically two modes of operation for a CacheBox provider and it is all determined by the interface they implement:

1. `ICacheProvider` : A standalone cache provider
2. `IColdboxApplicationCache` : A cache provider for usage by the ColdBox Framework

The following are the shipped providers:

| Provider                | ColdBox Enabled | Reporting Enabled | Description                                                               |
| ----------------------- | --------------- | ----------------- | ------------------------------------------------------------------------- |
| CacheBoxProvider        | false           | true              | Our very own CacheBox caching engine                                      |
| CacheBoxColdBoxProvider | true            | true              | Our CacheBox caching engine prepared for ColdBox application usage        |
| CFProvider              | false           | true              | A ColdFusion 9.0.1 and above implementation                               |
| CFColdBoxProvider       | true            | true              | A ColdBox enhanced version of our ColdFusion 9.0.1 cache provider         |
| LuceeProvider           | false           | true              | A ColdBox enhanced version of our Lucee cache provider                    |
| LuceeColdBoxProvider    | true            | true              | A ColdBox enhanced version of our Lucee cache provider                    |
| BoxLangProvider         | false           | true              | BoxLang native cache engine integration                                   |
| BoxLangColdBoxProvider  | true            | true              | BoxLang native cache engine for ColdBox applications                      |
| MockProvider            | true            | false             | A ColdBox enhanced cache provider that can be used for mocking or testing |

Each provider has the shared functionality provided by the ICacheProvider and IColdboxApplicationCache interfaces, so I encourage you to look at the CFC [API Docs](https://apidocs.ortussolutions.com/cachebox/5.0.0/index.html) for an in-depth view of their API. Also, please note that each cache provider implementation has also some extra methods and functionality according to their implementation, so please check out the API docs for each provider.


---

# 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/usage/cache-providers.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.
