当前位置: 首页>>代码示例>>Java>>正文


Java ColumnFamilyTemplate.createUpdater方法代码示例

本文整理汇总了Java中me.prettyprint.cassandra.service.template.ColumnFamilyTemplate.createUpdater方法的典型用法代码示例。如果您正苦于以下问题:Java ColumnFamilyTemplate.createUpdater方法的具体用法?Java ColumnFamilyTemplate.createUpdater怎么用?Java ColumnFamilyTemplate.createUpdater使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在me.prettyprint.cassandra.service.template.ColumnFamilyTemplate的用法示例。


在下文中一共展示了ColumnFamilyTemplate.createUpdater方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: update

import me.prettyprint.cassandra.service.template.ColumnFamilyTemplate; //导入方法依赖的package包/类
private void update(ColumnFamilyTemplate<String, String> template) {
    ColumnFamilyUpdater<String, String> updater = template.createUpdater("a key");
    updater.setString("domain", "www.chaosxu.com");
    updater.setLong("time", System.currentTimeMillis());

    template.update(updater);
}
 
开发者ID:ChaosXu,项目名称:rrd4j-cassandra,代码行数:8,代码来源:HectorTest.java

示例2: updateString

import me.prettyprint.cassandra.service.template.ColumnFamilyTemplate; //导入方法依赖的package包/类
/**
 * Updates the value of the column in the given row (identified by the key).
 *
 * @param key        - key to identify the row.
 * @param columnName - column to be updated.
 * @param value      - value to be inserted.
 */
public void updateString(K key, String columnName, String value) {

	// update the secondary index, if needed
	updateSecondaryIndexes(key, columnName, value, -1, -1);

	final ColumnFamilyTemplate<K, String> columnFamilyLocal = getColumnFamily();
	final ColumnFamilyUpdater<K, String> updater = columnFamilyLocal.createUpdater(key);
	updater.setString(columnName, value);
	columnFamilyLocal.update(updater);


}
 
开发者ID:WizeCommerce,项目名称:hecuba,代码行数:20,代码来源:HectorBasedHecubaClientManager.java

示例3: updateByteBuffer

import me.prettyprint.cassandra.service.template.ColumnFamilyTemplate; //导入方法依赖的package包/类
/**
 * Updates the value of the column in the given row (identified by the key).
 *
 * @param key        - key to identify the row.
 * @param columnName - column to be updated.
 * @param value      - value to be inserted.
 */
public void updateByteBuffer(K key, String columnName, ByteBuffer value) {
	final ColumnFamilyTemplate<K, String> columnFamilyLocal = getColumnFamily();
	final ColumnFamilyUpdater<K, String> updater = columnFamilyLocal.createUpdater(key);
	updater.setByteBuffer(columnName, value);
	columnFamilyLocal.update(updater);
}
 
开发者ID:WizeCommerce,项目名称:hecuba,代码行数:14,代码来源:HectorBasedHecubaClientManager.java


注:本文中的me.prettyprint.cassandra.service.template.ColumnFamilyTemplate.createUpdater方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。