public Map<byte[], byte[]> hGetAll(byte[] key) {
   try {
     if (isPipelined()) {
       pipeline(pipeline.hgetall(key));
       return null;
     }
     return SrpUtils.toMap(client.hgetall(key).data());
   } catch (Exception ex) {
     throw convertSrpAccessException(ex);
   }
 }