本文整理汇总了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);
}
示例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);
}
示例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);
}