Example usage for org.apache.lucene.search.suggest.fst WFSTCompletionLookup store

List of usage examples for org.apache.lucene.search.suggest.fst WFSTCompletionLookup store

Introduction

In this page you can find the example usage for org.apache.lucene.search.suggest.fst WFSTCompletionLookup store.

Prototype

@Override
    public boolean store(DataOutput output) throws IOException 

Source Link

Usage

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);
}