Package | Description |
---|---|
org.infinispan.loaders.bucket |
Abstract classes that use hashed buckets to store entries.
|
org.infinispan.loaders.file |
Simple filesystem-based
CacheStore implementation. |
org.infinispan.loaders.jdbc.binary |
This JDBC CacheStore implementation is optimized for storing binary (non-String)
keys in the cache.
|
org.infinispan.loaders.jdbc.logging | |
org.infinispan.util.logging |
Infinispan's logging abstractions that delegate to either JDK or Log4J logging engines.
|
Modifier and Type | Method and Description |
---|---|
protected abstract Bucket |
BucketBasedCacheStore.loadBucket(Integer hash)
Loads a Bucket from the store, based on the hash code of the bucket.
|
Bucket |
Bucket.Externalizer.readObject(ObjectInput input) |
Modifier and Type | Method and Description |
---|---|
Set<Class<? extends Bucket>> |
Bucket.Externalizer.getTypeClasses() |
Modifier and Type | Method and Description |
---|---|
boolean |
BucketBasedCacheStore.BucketHandler.handle(Bucket bucket)
Handles a bucket that is passed in.
|
boolean |
BucketBasedCacheStore.CollectionGeneratingBucketHandler.handle(Bucket bucket) |
protected void |
BucketBasedCacheStore.insertBucket(Bucket bucket)
Inserts a new Bucket in the storage system.
|
protected abstract void |
BucketBasedCacheStore.updateBucket(Bucket bucket)
Updates a bucket in the store with the Bucket passed in to the method.
|
void |
Bucket.Externalizer.writeObject(ObjectOutput output,
Bucket b) |
Modifier and Type | Method and Description |
---|---|
protected Bucket |
FileCacheStore.loadBucket(File bucketFile) |
protected Bucket |
FileCacheStore.loadBucket(Integer hash) |
Bucket |
FileCacheStore.loadBucketContainingKey(String key) |
Modifier and Type | Method and Description |
---|---|
void |
FileCacheStore.updateBucket(Bucket b) |
Modifier and Type | Method and Description |
---|---|
protected Bucket |
JdbcBinaryCacheStore.loadBucket(Integer keyHashCode) |
Modifier and Type | Method and Description |
---|---|
protected void |
JdbcBinaryCacheStore.insertBucket(Bucket bucket) |
protected void |
JdbcBinaryCacheStore.updateBucket(Bucket bucket) |
Modifier and Type | Method and Description |
---|---|
void |
Log.sqlFailureInsertingBucket(Bucket bucket,
SQLException e) |
void |
Log.sqlFailureUpdatingBucket(Bucket bucket,
SQLException e) |
Modifier and Type | Method and Description |
---|---|
void |
Log.errorSavingBucket(Bucket b,
IOException ex) |
Copyright © 2013 JBoss, a division of Red Hat. All Rights Reserved.