node-hbase
node-hbase copied to clipboard
Whether batch GET and DELETE are supported?
var rowKeys = ['1', '2', '3', '4', '5'....] rowKeys.forEach(rowKey -> {client.get(rowKey)/ client.delete(rowKey)});
How can I get or delete multiple rows with row keys in addition to using the loop function above.
And can i set the 'ttl' option for the cells or rows?