|
ColdBox Platform v3.8.0 | ||||
FRAMES |
WEB-INF.cftags.componentcoldbox.system.cache.store.ConcurrentStore
public class ConcurrentStore
I am a concurrent object store. In other words, I am fancy!
Constructor Summary | |
---|---|
init(any<ICacheProvider> cacheProvider)
Constructor |
Method Summary | |
---|---|
any |
clear(any objectKey)
Clears an object from the storage pool |
void |
clearAll()
Clear all elements of the store |
void |
expireObject(any objectKey)
Mark an object for expiration |
void |
flush()
Flush the store to a permanent storage |
any |
get(any objectKey)
Get an object from the object store, returns java null if not found |
any |
getIndexer()
Get the store's pool metadata indexer structure |
any |
getKeys()
Get all the store's object keys |
any |
getPool()
Get a reference to the store's pool of objects |
any |
getQuiet(any objectKey)
Get an object from cache with no stats, null if not found |
any |
getSize()
Get the cache's size in items |
any |
getStoreID()
Get this storage's ID |
any |
isExpired(any objectKey)
Test if an object in the store has expired or not |
any |
lookup(any objectKey)
Check if an object is in cache |
void |
reap()
Reap the storage, clean it from old stuff |
void |
set(any objectKey, any object, [any timeout=''], [any lastAccessTimeout=''], [any extras='[runtime expression]'])
sets an object in the storage |
Methods inherited from class WEB-INF.cftags.component |
---|
None
|
Constructor Detail |
---|
public init(any<ICacheProvider> cacheProvider)
cacheProvider
- The associated cache provider as coldbox.system.cache.ICacheProviderMethod Detail |
---|
public any clear(any objectKey)
clear
in interface
IObjectStore
objectKey
- The object keypublic void clearAll()
clearAll
in interface
IObjectStore
public void expireObject(any objectKey)
expireObject
in interface
IObjectStore
objectKey
- The object keypublic void flush()
flush
in interface
IObjectStore
public any get(any objectKey)
get
in interface
IObjectStore
objectKey
- The key of the objectpublic any getIndexer()
getIndexer
in interface
IObjectStore
public any getKeys()
getKeys
in interface
IObjectStore
public any getPool()
public any getQuiet(any objectKey)
getQuiet
in interface
IObjectStore
objectKey
- The key of the objectpublic any getSize()
getSize
in interface
IObjectStore
public any getStoreID()
public any isExpired(any objectKey)
isExpired
in interface
IObjectStore
objectKey
- The object keypublic any lookup(any objectKey)
lookup
in interface
IObjectStore
objectKey
- The key of the objectpublic void reap()
reap
in interface
IObjectStore
public void set(any objectKey, any object, [any timeout=''], [any lastAccessTimeout=''], [any extras='[runtime expression]'])
set
in interface
IObjectStore
objectKey
- The object keyobject
- The object to savetimeout
- Timeout in minuteslastAccessTimeout
- Timeout in minutesextras
- A map of extra name-value pairs
|
ColdBox Platform v3.8.0 | ||||
FRAMES |