Pregunta

What is the difference in calling getKey and getRow?

From javadoc,

getKey: Query a single key

getRow: Query a single row

¿Fue útil?

Solución

apparently nothing. getRow() just calls getKey()

From ThriftColumnFamilyQueryImpl.java

@Override
public RowQuery<K, C> getRow(K rowKey) {
    return getKey(rowKey);
}
Licenciado bajo: CC-BY-SA con atribución
No afiliado a StackOverflow
scroll top