List of usage examples for org.apache.lucene.search.suggest.fst WFSTCompletionLookup store
@Override
public boolean store(DataOutput output) throws IOException
From source file:org.opengrok.suggest.SuggesterProjectData.java
License:Open Source License
private void store(final WFSTCompletionLookup WFST, final String field) throws IOException { FileOutputStream fos = new FileOutputStream(getWFSTFile(field)); WFST.store(fos); }