CacheBox: Enterprise Caching
7.x
7.x
  • Introduction
    • Contributing Guide
    • Release History
      • What's New With 7.2.0
      • What's New With 7.1.0
      • What's New With 7.0.0
    • Upgrading to CacheBox 7
    • About This Book
      • Author
  • Getting Started
    • Overview
    • Installing CacheBox
    • Creating CacheBox
      • Common CacheFactory Methods
      • Cache Cleanup/Reaping
  • Configuration
    • CacheBox Configuration
      • CacheBox DSL
        • Default Cache
      • CacheBox Config Object
      • ColdBox Configuration
  • Usage
    • Cache Providers
      • CF Providers
      • Lucee Providers
      • Mock Provider
      • CacheBox Provider
      • Couchbase Providers
    • CacheBox Object Stores
      • ConcurrentStore
      • ConcurrentSoftReferenceStore
      • DiskStore
      • JDBCStore
      • BlackholeStore
  • Advanced Usage
    • CacheBox Eviction Policies
      • Using Your Own Policy
    • CacheBox Event Model
      • CacheBox Events
      • Provider Events
      • Cache Listeners
    • Cache Reporting
      • Creating Your Own Skins
        • Skin Templates
        • ReportHandler
          • Action Commands
  • For The Geeks
    • Caching Concepts
      • Caching Considerations
      • Cache Loading
      • Definitions
      • Java Soft References
    • Cache Topologies
      • Single Instance/In-Process
      • Single Instance/Out-Process
      • Replicated
      • Distributed
    • CacheBox Architecture
      • CacheFactory
      • CacheBoxConfig
      • EventManager
      • ColdBox
      • LogBox
      • ICacheProvider
      • ICacheStats
      • IObjectStore
      • IEvictionPolicy
      • AbstractEvictionPolicy
      • IColdboxApplicationCache
Powered by GitBook
On this page
  • Features at a Glance
  • Cache Aggregator
  • Caching API
  • Enterprise Caching Engine
  • Cache Debugger & Reporter
  • Useful Resources

Was this helpful?

Edit on GitHub
Export as PDF
  1. Getting Started

Overview

What is CacheBox?

PreviousAuthorNextInstalling CacheBox

Last updated 1 year ago

Was this helpful?

Features at a Glance

  • Cache Aggregator

    • Ability to aggregate different caching engines

    • Ability to aggregate different configurations of the same caches

    • Rich aggregation event model

    • Granular logging

  • Fast and Simple to use

    • Fast ColdFusion and Java hybrid cache

    • Simple API and configuration parameters

    • Small Footprint

    • There is no need to create it, configure it, or manage it if used within a ColdBox Application.

  • Solid Core

    • Multi-Threaded

    • Based on

    • Multiple : LRU, LFU and FIFO

    • Memory Management & Memory Sensitive Caching based on

    • High Load Tested

    • Fully Documented

  • Extensible & Flexible

    • Cache Listeners for event broadcasting

    • Create custom eviction policies

    • Create cache providers

    • Create your own CacheBox object storage

    • Extensive and granular purging mechanisms (regular expressions and key snippets)

  • Highly Configurable

    • JVM Threshold Checks

    • Object Limits

    • Ability to time expire objects

    • Eternal (singletons) and time-lived objects

    • Object purging based on object usage (Access Timeouts)

    • Fully configurable at runtime via dynamic configurations and hot-updates

  • Visually Appealing and Useful

    • Fully featured caching monitor and commands panel

    • Complete cache performance reports

Cache Aggregator

Caching API

These cache providers also share the same interaction API and thus give you an excellent level of abstraction, higher extensibility, and flexibility when planning your applications or trying to scale them out.

You can build your applications based on this abstract API and then be able to configure the caches for your applications at runtime. This gives you greater flexibility and scalability when planning and writing your applications, as they can be targeted for ANY CFML engine or version.

Enterprise Caching Engine

Caching has been a central concern in the ColdBox Platform since its first version. We have always been concerned with mission-critical applications, scalability, and the ability to provide granular caching aspects to ColdFusion (CFML) applications within a single in-process caching engine with different storage capabilities that could be in-process or distributed.

Foremost, CacheBox behaves as an in-memory cache designed for objects, data, HTML fragments, or anything else you like. It has various tuning parameters such as default object timeout, default last access timeout, maximum objects in the cache, a JVM memory threshold, a reaping frequency, eviction policies, an event model, and so much more.

We also use object stores for the CacheBox caching engine. This means that CacheBox can be configured to store its cached objects in different locations other than memory. This gives us great flexibility because we offer a wide gamut of storage options, plus the concept of actually building your storage.

Cache Debugger & Reporter

We have an excellent cache debugger where you can visualize all your configured caches from within your application. You can see the performance of the cache the contents, and even issue commands to the targeted cache provider.

Useful Resources

CacheBox is a cache aggregator in which you can aggregate different caching engines or types of the same engine into one umbrella. It gives you built-in logging (via ), an event model, synchronization, shutdown/startup procedures, reporting, interaction consoles, and a cache-agnostic API.

CacheBox allows you to manage and create custom, what we call , that talk to different caching engines that you would like to configure in your applications. By aggregating them within CacheBox, you benefit from a rich event model for all caches to share, report, and debug.

Java Concurrency Classes
Eviction Policies
Java Soft References
LogBox
Cache Providers
CacheBox Release Notes
http://en.wikipedia.org/wiki/Cache
http://ehcache.org/documentation/getting_started.html
http://www.oracle.com/technetwork/middleware/coherence
http://www.couch.io/
http://ecet.ecs.ru.acad.bg/cst05/Docs/cp/SII/II.20.pdf
http://www.ibm.com/developerworks/java/library/j-jtp01246.html
http://java.sun.com/j2se/1.5.0/docs/api/java/lang/ref/SoftReference.html
http://jdj.sys-con.com/read/36434_p.htm
CacheBox Aggregation of Caches
CacheBox API Providers
CacheBox Engine Architecture