Pergunta

What is the difference in calling getKey and getRow?

From javadoc,

getKey: Query a single key

getRow: Query a single row

Foi útil?

Solução

apparently nothing. getRow() just calls getKey()

From ThriftColumnFamilyQueryImpl.java

@Override
public RowQuery<K, C> getRow(K rowKey) {
    return getKey(rowKey);
}
Licenciado em: CC-BY-SA com atribuição
Não afiliado a StackOverflow
scroll top