|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use ConfigurationProperty | |
---|---|
org.infinispan.config | Cache configuration beans and parsers. |
org.infinispan.loaders | This package contains loaders and stores, which are used for overflow or persistence. |
org.infinispan.loaders.bdbje | This package contains a CacheStore implementation based on
Oracle's BDBJE storage engine. |
org.infinispan.loaders.file | |
org.infinispan.loaders.jdbc.binary | This JDBC CacheStore implementation is optimized for storing binary (non-String) keys in the cache. |
org.infinispan.loaders.jdbc.mixed | This is a delegating CacheStore implementation that delegates either to a binary or String based JDBC cache store depending on the key used. |
org.infinispan.loaders.jdbc.stringbased | This JDBC CacheStore implementation is optimized for storing String keys in the cache. |
org.infinispan.loaders.s3 | This package contains a CacheStore implementation based on
persisting to Amazon's S3 service. |
org.infinispan.tools.schema |
Uses of ConfigurationProperty in org.infinispan.config |
---|
Methods in org.infinispan.config with annotations of type ConfigurationProperty | |
---|---|
void |
CustomInterceptorConfig.setProperties(Properties properties)
|
Uses of ConfigurationProperty in org.infinispan.loaders |
---|
Methods in org.infinispan.loaders with annotations of type ConfigurationProperty | |
---|---|
void |
LockSupportCacheStoreConfig.setLockAcquistionTimeout(long lockAcquistionTimeout)
|
void |
LockSupportCacheStoreConfig.setLockConcurrencyLevel(int lockConcurrencyLevel)
Sets number of threads expected to use this class concurrently. |
Uses of ConfigurationProperty in org.infinispan.loaders.bdbje |
---|
Methods in org.infinispan.loaders.bdbje with annotations of type ConfigurationProperty | |
---|---|
void |
BdbjeCacheStoreConfig.setCacheDbNamePrefix(String cacheDbNamePrefix)
|
void |
BdbjeCacheStoreConfig.setCatalogDbName(String catalogDbName)
|
void |
BdbjeCacheStoreConfig.setExpiryDbNamePrefix(String expiryDbName)
|
void |
BdbjeCacheStoreConfig.setLocation(String location)
|
void |
BdbjeCacheStoreConfig.setLockAcquistionTimeout(long lockAcquistionTimeout)
|
void |
BdbjeCacheStoreConfig.setMaxTxRetries(int maxTxRetries)
|
Uses of ConfigurationProperty in org.infinispan.loaders.file |
---|
Methods in org.infinispan.loaders.file with annotations of type ConfigurationProperty | |
---|---|
void |
FileCacheStoreConfig.setLocation(String location)
|
Uses of ConfigurationProperty in org.infinispan.loaders.jdbc.binary |
---|
Methods in org.infinispan.loaders.jdbc.binary with annotations of type ConfigurationProperty | |
---|---|
void |
JdbcBinaryCacheStoreConfig.setBatchSize(int batchSize)
|
void |
JdbcBinaryCacheStoreConfig.setBucketTableNamePrefix(String bucketTableName)
Sets the prefix for the name of the table where the data will be stored. |
void |
JdbcBinaryCacheStoreConfig.setConnectionFactoryClass(String connectionFactoryClass)
Name of the connection factory class. |
void |
JdbcBinaryCacheStoreConfig.setConnectionUrl(String connectionUrl)
Url connection to the database. |
void |
JdbcBinaryCacheStoreConfig.setCreateTableOnStart(boolean createTableOnStart)
If true, and the table is missing it will be created when starting the cache store. |
void |
JdbcBinaryCacheStoreConfig.setDataColumnName(String dataColumnName)
|
void |
JdbcBinaryCacheStoreConfig.setDataColumnType(String dataColumnType)
|
void |
JdbcBinaryCacheStoreConfig.setDriverClass(String driverClass)
Driver class, will be loaded before initializing the ConnectionFactory |
void |
JdbcBinaryCacheStoreConfig.setDropTableOnExit(boolean dropTableOnExit)
If true, the table will be created when cache store is stopped. |
void |
JdbcBinaryCacheStoreConfig.setFetchSize(int fetchSize)
|
void |
JdbcBinaryCacheStoreConfig.setIdColumnName(String idColumnName)
|
void |
JdbcBinaryCacheStoreConfig.setIdColumnType(String idColumnType)
|
void |
JdbcBinaryCacheStoreConfig.setPassword(String password)
Database username's password. |
void |
JdbcBinaryCacheStoreConfig.setTimestampColumnName(String timestampColumnName)
|
void |
JdbcBinaryCacheStoreConfig.setTimestampColumnType(String timestampColumnType)
|
void |
JdbcBinaryCacheStoreConfig.setUserName(String userName)
Databse user name. |
Uses of ConfigurationProperty in org.infinispan.loaders.jdbc.mixed |
---|
Methods in org.infinispan.loaders.jdbc.mixed with annotations of type ConfigurationProperty | |
---|---|
void |
JdbcMixedCacheStoreConfig.setBatchSize(int batchSize)
|
void |
JdbcMixedCacheStoreConfig.setConnectionFactoryClass(String connectionFactoryClass)
Name of the connection factory class. |
void |
JdbcMixedCacheStoreConfig.setConnectionUrl(String connectionUrl)
|
void |
JdbcMixedCacheStoreConfig.setCreateTableOnStartForBinary(boolean createTableOnStartForBinary)
|
void |
JdbcMixedCacheStoreConfig.setCreateTableOnStartForStrings(boolean createTableOnStartForStrings)
|
void |
JdbcMixedCacheStoreConfig.setDataColumnNameForBinary(String dataColumnNameForBinary)
|
void |
JdbcMixedCacheStoreConfig.setDataColumnNameForStrings(String dataColumnNameForStrings)
|
void |
JdbcMixedCacheStoreConfig.setDataColumnTypeForBinary(String dataColumnTypeForBinary)
|
void |
JdbcMixedCacheStoreConfig.setDataColumnTypeForStrings(String dataColumnTypeForStrings)
|
void |
JdbcMixedCacheStoreConfig.setDriverClass(String driverClass)
|
void |
JdbcMixedCacheStoreConfig.setDropTableOnExitForBinary(boolean dropTableOnExitForBinary)
|
void |
JdbcMixedCacheStoreConfig.setDropTableOnExitForStrings(boolean dropTableOnExitForStrings)
|
void |
JdbcMixedCacheStoreConfig.setFetchSize(int fetchSize)
|
void |
JdbcMixedCacheStoreConfig.setIdColumnNameForBinary(String idColumnNameForBinary)
|
void |
JdbcMixedCacheStoreConfig.setIdColumnNameForStrings(String idColumnNameForStrings)
|
void |
JdbcMixedCacheStoreConfig.setIdColumnTypeForBinary(String idColumnTypeForBinary)
|
void |
JdbcMixedCacheStoreConfig.setIdColumnTypeForStrings(String idColumnTypeForStrings)
|
void |
JdbcMixedCacheStoreConfig.setKey2StringMapperClass(String name)
|
void |
JdbcMixedCacheStoreConfig.setLockAcquistionTimeout(int lockAcquistionTimeout)
|
void |
JdbcMixedCacheStoreConfig.setLockConcurrencyLevelForBinary(int concurrencyLevel)
|
void |
JdbcMixedCacheStoreConfig.setLockConcurrencyLevelForStrings(int concurrencyLevel)
|
void |
JdbcMixedCacheStoreConfig.setPassword(String password)
|
void |
JdbcMixedCacheStoreConfig.setTableNamePrefixForBinary(String tableNameForBinary)
|
void |
JdbcMixedCacheStoreConfig.setTableNamePrefixForStrings(String tableNameForStrings)
|
void |
JdbcMixedCacheStoreConfig.setTimestampColumnNameForBinary(String timestampColumnNameForBinary)
|
void |
JdbcMixedCacheStoreConfig.setTimestampColumnNameForStrings(String timestampColumnNameForStrings)
|
void |
JdbcMixedCacheStoreConfig.setTimestampColumnTypeForBinary(String timestampColumnTypeForBinary)
|
void |
JdbcMixedCacheStoreConfig.setTimestampColumnTypeForStrings(String timestampColumnTypeForStrings)
|
void |
JdbcMixedCacheStoreConfig.setUserName(String userName)
|
Uses of ConfigurationProperty in org.infinispan.loaders.jdbc.stringbased |
---|
Methods in org.infinispan.loaders.jdbc.stringbased with annotations of type ConfigurationProperty | |
---|---|
void |
JdbcStringBasedCacheStoreConfig.setBatchSize(int batchSize)
|
void |
JdbcStringBasedCacheStoreConfig.setConnectionFactoryClass(String connectionFactoryClass)
|
void |
JdbcStringBasedCacheStoreConfig.setConnectionUrl(String connectionUrl)
Jdbc connection string for connecting to the database. |
void |
JdbcStringBasedCacheStoreConfig.setCreateTableOnStart(boolean createTableOnStart)
|
void |
JdbcStringBasedCacheStoreConfig.setDataColumnName(String dataColumnName)
Sets the name of the column where the StoredEntry will be binary stored. |
void |
JdbcStringBasedCacheStoreConfig.setDataColumnType(String dataColumnType)
Sets the type of the column where data will be binary stored. |
void |
JdbcStringBasedCacheStoreConfig.setDriverClass(String driverClassName)
The name of the driver used for connecting to the database. |
void |
JdbcStringBasedCacheStoreConfig.setDropTableOnExit(boolean dropTableOnExit)
|
void |
JdbcStringBasedCacheStoreConfig.setFetchSize(int fetchSize)
|
void |
JdbcStringBasedCacheStoreConfig.setIdColumnName(String idColumnName)
Sets the name of the column where the id will be stored. |
void |
JdbcStringBasedCacheStoreConfig.setIdColumnType(String idColumnType)
sql equivalent for java's String. |
void |
JdbcStringBasedCacheStoreConfig.setKey2StringMapperClass(String className)
Name of the class implementing Key2StringMapper. |
void |
JdbcStringBasedCacheStoreConfig.setPassword(String password)
Database username's password. |
void |
JdbcStringBasedCacheStoreConfig.setStringsTableNamePrefix(String stringsTableNamePrefix)
Sets the prefix for the name of the table where the data will be stored. |
void |
JdbcStringBasedCacheStoreConfig.setTimestampColumnName(String timestampColumnName)
Sets the name of the column where the timestamp (Long in java) will be stored. |
void |
JdbcStringBasedCacheStoreConfig.setTimestampColumnType(String timestampColumnType)
Sets the prefix for the name of the table where the data will be stored. |
void |
JdbcStringBasedCacheStoreConfig.setUserName(String userName)
Database username. |
Uses of ConfigurationProperty in org.infinispan.loaders.s3 |
---|
Methods in org.infinispan.loaders.s3 with annotations of type ConfigurationProperty | |
---|---|
void |
S3CacheStoreConfig.setAwsAccessKey(String awsAccessKey)
|
void |
S3CacheStoreConfig.setAwsSecretKey(String awsSecretKey)
|
void |
S3CacheStoreConfig.setBucketPrefix(String bucketPrefix)
|
void |
S3CacheStoreConfig.setMaxConnections(int maxConnections)
|
void |
S3CacheStoreConfig.setProxyHost(String proxyHost)
|
void |
S3CacheStoreConfig.setProxyPort(int proxyPort)
|
void |
S3CacheStoreConfig.setRequestTimeout(long requestTimeout)
|
void |
S3CacheStoreConfig.setSecure(boolean secure)
|
Uses of ConfigurationProperty in org.infinispan.tools.schema |
---|
Methods in org.infinispan.tools.schema that return ConfigurationProperty | |
---|---|
protected ConfigurationProperty[] |
ConfigurationTreeWalker.propertiesElementsOnMethod(Method m)
|
|
Google Analytics | |||||||||
PREV NEXT | FRAMES NO FRAMES |