All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.apache.solr.spelling.IndexBasedSpellChecker Maven / Gradle / Ivy

There is a newer version: 9.7.0
Show newest version
/*
 * Licensed to the Apache Software Foundation (ASF) under one or more
 * contributor license agreements.  See the NOTICE file distributed with
 * this work for additional information regarding copyright ownership.
 * The ASF licenses this file to You under the Apache License, Version 2.0
 * (the "License"); you may not use this file except in compliance with
 * the License.  You may obtain a copy of the License at
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
package org.apache.solr.spelling;

import java.io.IOException;
import java.nio.file.Path;
import org.apache.lucene.index.DirectoryReader;
import org.apache.lucene.index.IndexReader;
import org.apache.lucene.index.IndexWriterConfig;
import org.apache.lucene.search.spell.HighFrequencyDictionary;
import org.apache.lucene.store.FSDirectory;
import org.apache.solr.common.util.NamedList;
import org.apache.solr.core.SolrCore;
import org.apache.solr.search.SolrIndexSearcher;

/**
 * A spell checker implementation that loads words from Solr as well as arbitrary Lucene indices.
 *
 * 

Refer to https://solr.apache.org/guide/solr/latest/query-guide/spell-checking.html * for more details. * * @since solr 1.3 */ public class IndexBasedSpellChecker extends AbstractLuceneSpellChecker { public static final String THRESHOLD_TOKEN_FREQUENCY = "thresholdTokenFrequency"; protected float threshold; protected IndexReader reader; @Override public String init(NamedList config, SolrCore core) { super.init(config, core); threshold = config.get(THRESHOLD_TOKEN_FREQUENCY) == null ? 0.0f : (Float) config.get(THRESHOLD_TOKEN_FREQUENCY); initSourceReader(); return name; } private void initSourceReader() { if (sourceLocation != null) { try { FSDirectory luceneIndexDir = FSDirectory.open(Path.of(sourceLocation)); this.reader = DirectoryReader.open(luceneIndexDir); } catch (IOException e) { throw new RuntimeException(e); } } } @Override public void build(SolrCore core, SolrIndexSearcher searcher) throws IOException { IndexReader reader = null; if (sourceLocation == null) { // Load from Solr's index reader = searcher.getIndexReader(); } else { // Load from Lucene index at given sourceLocation reader = this.reader; } // Create the dictionary dictionary = new HighFrequencyDictionary(reader, field, threshold); // TODO: maybe whether or not to clear the index should be configurable? // an incremental update is faster (just adds new terms), but if you 'expunged' // old terms I think they might hang around. spellChecker.clearIndex(); // TODO: you should be able to specify the IWC params? // TODO: if we enable this, codec gets angry since field won't exist in the schema // config.setCodec(core.getCodec()); spellChecker.indexDictionary(dictionary, new IndexWriterConfig(null), false); } @Override protected IndexReader determineReader(IndexReader reader) { IndexReader result = null; if (sourceLocation != null) { result = this.reader; } else { result = reader; } return result; } @Override public void reload(SolrCore core, SolrIndexSearcher searcher) throws IOException { super.reload(core, searcher); // reload the source initSourceReader(); } public float getThreshold() { return threshold; } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy