multiDel
删同一HashKey下的多行数据。
- /**
- * Delete specified sort keys under the same hash key.
- * @param tableName table name
- * @param hashKey used to decide which partition to put this k-v,
- * should not be null or empty.
- * @param sortKeys specify sort keys to be deleted.
- * should not be empty.
- * @throws PException
- */
- public void multiDel(String tableName, byte[] hashKey, List<byte[]> sortKeys) throws PException;
注:
- 参数:需传入TableName、HashKey、SortKeys。
- SortKeys不允许为空,如果不知道该HashKey下面有哪些SortKey,可以通过下面的multiGetSortKeys方法获取。
- 返回值:无。
- 异常:如果出现异常,譬如网络错误、超时错误、服务端错误等,会抛出 PException。