* @param searchable documents stream
* @param reader index reader
*/
public PwaBlacklistFilter(PwaSearchableCommon searchable, IndexReader reader) throws IOException {
super(searchable);
this.cache = new PwaBlacklistCache(reader,null); // the PwaBlacklistCache will use the blacklist configuration (file path) from initialization
}