if (vals != null)
uidSel.setValues(vals);
if (nots != null)
uidSel.setNotValues(nots);
RandomAccessFilter raf = uidFacet.buildFilter(uidSel);
return SenseiDocIdSet.build(raf, boboReader, "<uid> IN <" + StringUtils.join(vals, ", ") + "> NOT IN <" + StringUtils.join(nots, ", ") + ">");
}
catch(Exception e){
throw new IOException(e);
}