6061626364656667686970
} else { u = new URL(urlString); } host = u.getHost(); } catch (MalformedURLException e) { throw new IndexingException(e); } if (host != null) { doc.add("host", host); doc.add("site", host);
6768697071727374757677
doc.add("domain", URLUtil.getDomainName(u)); } host = u.getHost(); } catch (MalformedURLException e) { throw new IndexingException(e); } if (host != null) { doc.add("host", host); }
} else { u = new URL(url); } host = u.getHost(); } catch (MalformedURLException e) { throw new IndexingException(e); } if (host != null) { // add host as un-stored, indexed and tokenized doc.add("host", host);
8687888990919293949596