#include <Caching_Strategies_T.h>
Collaboration diagram for ACE_LRU_Caching_Strategy< ATTRIBUTES, CACHING_UTILITY >:
Public Types | |
typedef ATTRIBUTES | CACHING_ATTRIBUTES |
Public Member Functions | |
ACE_LRU_Caching_Strategy (void) | |
ATTRIBUTES | attributes (void) |
Accessor method for the timer attributes. | |
double | purge_percent (void) |
Get the percentage of entries to purge. | |
void | purge_percent (double percentage) |
Set the percentage of entries to purge. | |
int | notify_bind (int result, const ATTRIBUTES &attr) |
int | notify_find (int result, ATTRIBUTES &attr) |
int | notify_unbind (int result, const ATTRIBUTES &attr) |
int | notify_trybind (int result, ATTRIBUTES &attr) |
int | notify_rebind (int result, const ATTRIBUTES &attr) |
CACHING_UTILITY & | caching_utility (void) |
Purge the cache. | |
void | dump (void) const |
Dumps the state of the object. | |
Private Attributes | |
ATTRIBUTES | timer_ |
double | purge_percent_ |
The level about which the purging will happen automagically. | |
CACHING_UTILITY | caching_utility_ |
This is a strategy which makes use of a virtual timer which is updated whenever an item is inserted or looked up in the container. When the need of purging entries arises, the items with the lowest timer values are removed. Explanation of the template parameter list: CONTAINER is any map with entries of type <KEY, VALUE>. The ATTRIBUTES are the deciding factor for purging of entries and should logically be included with the VALUE. Some ways of doing this are: As being a member of the VALUE or VALUE being ACE_Pair<x, ATTRIBUTES>. The CACHING_UTILITY is the class which can be plugged in and which decides the entries to purge.
|
|
|
The <container> is the map in which the entries reside. The timer attribute is initialed to zero in this constructor. And the <purge_percent> field denotes the percentage of the entries in the cache which can be purged automagically and by default is set to 10%. |
|
Accessor method for the timer attributes.
|
|
Purge the cache.
|
|
Dumps the state of the object.
|
|
This method acts as a notification about the CONTAINERs bind method call. |
|
This method acts as a notification about the CONTAINERs find method call |
|
This method acts as a notification about the CONTAINERs rebind method call |
|
This method acts as a notification about the CONTAINERs trybind method call |
|
This method acts as a notification about the CONTAINERs unbind method call |
|
Set the percentage of entries to purge.
|
|
Get the percentage of entries to purge.
|
|
This is the helper class which will decide and expunge entries from the cache. |
|
The level about which the purging will happen automagically.
|
|
This element is the one which is the deciding factor for purging of an ITEM. |