List of usage examples for org.apache.lucene.benchmark.byTask.feeds DocData getDate
public String getDate()
From source file:com.datastax.dse.demos.solr.Wikipedia.java
License:Open Source License
public static boolean addDoc(SolrInputDocument doc, DocData d) { if (d.getTitle().indexOf(":") > 0) return false; doc.clear();/*from ww w . j av a 2 s. c o m*/ doc.addField("id", d.getName()); doc.addField("title", d.getTitle()); doc.addField("body", d.getBody()); doc.addField("date", d.getDate()); return true; }