del
删单行数据。
- /**
- * Delete value.
- * @param tableName TableHandler name
- * @param hashKey used to decide which partition to put this k-v,
- * if null or length == 0, means hash key is "".
- * @param sortKey all the k-v under hashKey will be sorted by sortKey,
- * if null or length == 0, means sort key is "".
- * @throws PException
- */
- public void del(String tableName, byte[] hashKey, byte[] sortKey) throws PException;
注:
- 参数:需传入TableName、HashKey、SortKey。
- 返回值:无。
- 异常:如果出现异常,譬如网络错误、超时错误、服务端错误等,会抛出 PException。