|
|||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use Tag | |
---|---|
com.alachisoft.ncache.runtime.caching | |
com.alachisoft.ncache.web.caching | Describes com.alachisoft.ncache.web.caching package The com.alachisoft.nCache.web.caching package provides classes for caching frequently used data in a cluster This includes the Cache class, a dictionary that allows you to store arbitrary data objects, such as hash tables and data sets. |
Uses of Tag in com.alachisoft.ncache.runtime.caching |
---|
Methods in com.alachisoft.ncache.runtime.caching that return Tag | |
---|---|
Tag[] |
ProviderCacheItem.getTags()
|
Methods in com.alachisoft.ncache.runtime.caching with parameters of type Tag | |
---|---|
void |
ProviderCacheItem.setTags(Tag[] tag)
|
Uses of Tag in com.alachisoft.ncache.web.caching |
---|
Methods in com.alachisoft.ncache.web.caching that return Tag | |
---|---|
Tag[] |
CacheItem.getTags()
gets all tags this CacheItem is attached to |
Methods in com.alachisoft.ncache.web.caching with parameters of type Tag | |
---|---|
CacheItemVersion |
Cache.add(java.lang.String key,
java.lang.Object value,
Tag[] tags)
Adds an item into the Cache object with a cache key to reference its location and using default values provided by the CacheItemPriority enumeration. |
java.util.HashMap |
Cache.getByAllTags(Tag[] tags)
Returns the cached objects that have all the same tags in common. |
java.util.HashMap |
Cache.getByAnyTag(Tag[] tags)
Returns the cached objects that have any of the same tags in common. |
java.util.HashMap |
Cache.getByTag(Tag tag)
Gets all the cached objects with the specified tag. |
java.util.Collection |
Cache.getKeysByAllTags(Tag[] tags)
Returns the cached objects that have all the same tags in common. |
java.util.Collection |
Cache.getKeysByAnyTag(Tag[] tags)
Returns the cached objects that have any of the same tags in common. |
java.util.Collection |
Cache.getKeysByTag(Tag tag)
Gets all the cached objects with the specified tag. |
CacheItemVersion |
Cache.insert(java.lang.String key,
java.lang.Object value,
Tag[] tags)
Inserts an item into the Cache with a cache key to reference its location and using default values provided by the CacheItemPriority enumeration. |
void |
Cache.removeByAllTags(Tag[] tags)
Removes the cached objects that have all of the same tags in common. |
void |
Cache.removeByAnyTag(Tag[] tags)
Removes the cached objects that have any of the same tags in common. |
void |
Cache.removeByTag(Tag tag)
Removes the cached objects that have the specified tag. |
void |
CacheItem.setTags(Tag[] tags)
sets all tags this CacheItem is to be attached to |
|
|||||||||
PREV NEXT | FRAMES NO FRAMES |