Вопрос

What is the difference in calling getKey and getRow?

From javadoc,

getKey: Query a single key

getRow: Query a single row

Это было полезно?

Решение

apparently nothing. getRow() just calls getKey()

From ThriftColumnFamilyQueryImpl.java

@Override
public RowQuery<K, C> getRow(K rowKey) {
    return getKey(rowKey);
}
Лицензировано под: CC-BY-SA с атрибуция
Не связан с StackOverflow
scroll top