本文整理汇总了Java中org.apache.cassandra.db.index.composites.CompositesIndex类的典型用法代码示例。如果您正苦于以下问题:Java CompositesIndex类的具体用法?Java CompositesIndex怎么用?Java CompositesIndex使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
CompositesIndex类属于org.apache.cassandra.db.index.composites包,在下文中一共展示了CompositesIndex类的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的Java代码示例。
示例1: compositeIndexCFMD
import org.apache.cassandra.db.index.composites.CompositesIndex; //导入依赖的package包/类
private static CFMetaData compositeIndexCFMD(String ksName, String cfName, final Boolean withIdxType, boolean withOldCfIds) throws ConfigurationException
{
final Map<String, String> idxOpts = Collections.singletonMap(CompositesIndex.PREFIX_SIZE_OPTION, "1");
final CompositeType composite = CompositeType.getInstance(Arrays.asList(new AbstractType<?>[]{UTF8Type.instance, UTF8Type.instance}));
return new CFMetaData(ksName,
cfName,
ColumnFamilyType.Standard,
composite,
null)
.columnMetadata(new HashMap<ByteBuffer, ColumnDefinition>()
{{
ByteBuffer cName = ByteBuffer.wrap("col1".getBytes(Charsets.UTF_8));
IndexType idxType = withIdxType ? IndexType.COMPOSITES : null;
put(cName, new ColumnDefinition(cName, UTF8Type.instance, idxType, idxOpts, withIdxType ? "col1_idx" : null, 1));
}});
}
开发者ID:dprguiuc,项目名称:Cassandra-Wasef,代码行数:17,代码来源:SchemaLoader.java
示例2: getIndexComparator
import org.apache.cassandra.db.index.composites.CompositesIndex; //导入依赖的package包/类
/**
* Returns the index comparator for index backed by CFS, or null.
*
* Note: it would be cleaner to have this be a member method. However we need this when opening indexes
* sstables, but by then the CFS won't be fully initiated, so the SecondaryIndex object won't be accessible.
*/
public static CellNameType getIndexComparator(CFMetaData baseMetadata, ColumnDefinition cdef)
{
switch (cdef.getIndexType())
{
case KEYS:
return new SimpleDenseCellNameType(keyComparator);
case COMPOSITES:
return CompositesIndex.getIndexComparator(baseMetadata, cdef);
case CUSTOM:
return null;
}
throw new AssertionError();
}
开发者ID:vcostet,项目名称:cassandra-kmean,代码行数:20,代码来源:SecondaryIndex.java
示例3: getIndexComparator
import org.apache.cassandra.db.index.composites.CompositesIndex; //导入依赖的package包/类
/**
* Returns the index comparator for index backed by CFS, or null.
*
* Note: it would be cleaner to have this be a member method. However we need this when opening indexes
* sstables, but by then the CFS won't be fully initiated, so the SecondaryIndex object won't be accessible.
*/
public static AbstractType<?> getIndexComparator(CFMetaData baseMetadata, ColumnDefinition cdef)
{
switch (cdef.getIndexType())
{
case KEYS:
return keyComparator;
case COMPOSITES:
return CompositesIndex.getIndexComparator(baseMetadata, cdef);
case CUSTOM:
return null;
}
throw new AssertionError();
}
开发者ID:pgaref,项目名称:ACaZoo,代码行数:20,代码来源:SecondaryIndex.java
示例4: announceMigration
import org.apache.cassandra.db.index.composites.CompositesIndex; //导入依赖的package包/类
public void announceMigration() throws InvalidRequestException, ConfigurationException
{
logger.debug("Updating column {} definition for index {}", columnName, indexName);
CFMetaData cfm = Schema.instance.getCFMetaData(keyspace(), columnFamily()).clone();
CFDefinition cfDef = cfm.getCfDef();
ColumnDefinition cd = cfm.getColumnDefinition(columnName.key);
if (isCustom)
{
cd.setIndexType(IndexType.CUSTOM, Collections.singletonMap(SecondaryIndex.CUSTOM_INDEX_OPTION_NAME, indexClass));
}
else if (cfDef.isComposite)
{
CompositeType composite = (CompositeType)cfm.comparator;
Map<String, String> opts = new HashMap<String, String>();
opts.put(CompositesIndex.PREFIX_SIZE_OPTION, String.valueOf(composite.types.size() - (cfDef.hasCollections ? 2 : 1)));
cd.setIndexType(IndexType.COMPOSITES, opts);
}
else
{
cd.setIndexType(IndexType.KEYS, Collections.<String, String>emptyMap());
}
cd.setIndexName(indexName);
cfm.addDefaultIndexNames();
MigrationManager.announceColumnFamilyUpdate(cfm);
}
开发者ID:dprguiuc,项目名称:Cassandra-Wasef,代码行数:28,代码来源:CreateIndexStatement.java
注:本文中的org.apache.cassandra.db.index.composites.CompositesIndex类示例整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。 |
请发表评论