示例#1
0
  @Override
  public void remove(DboTableMeta colFamily, byte[] rowKey, Collection<byte[]> columnNames) {
    session.remove(colFamily, rowKey, columnNames);
    RowHolder<Row> currentRow = fromCache(colFamily, rowKey);
    if (currentRow == null) {
      return;
    }
    Row value = currentRow.getValue();
    if (value == null) {
      return;
    }

    value.removeColumns(columnNames);
  }