1

lucene を使用してインクリメンタル検索を実行したいのですが、単語間に空白があります。「今日のインド」と言うと、検索クエリが返されます

  • 今日のインド
  • 今日のインド時間
  • 今日の時間 インド

SQLで「India today%」などの検索結果を出したい。しかし、これは起こっていません。フレーズクエリを使用してみましたが、正確な検索で機能します。保存されたデータはNOT_ANALYZEDであるため、スペースで検索できます。

KeywordAnalyzer analyzer = new KeywordAnalyzer (); 

PhraseQuery pq = new  PhraseQuery();
pq.add(new Term("name", "MR DANIEL KELLEHER")); 


int hitsPerPage = 1000;
IndexReader reader = IndexReader.open(index);
IndexSearcher searcher = new IndexSearcher(reader);
TopScoreDocCollector collector = TopScoreDocCollector.create(hitsPerPage, true);
searcher.search(pq, collector);

間にスペースがあるクエリのように取得できません。ネットとスタックオーバーフローに関する多くの記事も参照しましたが、解決策が得られません。

package org.lucenesample;

import org.apache.lucene.search.Query;

import org.apache.lucene.*;
import org.apache.lucene.analysis.*;
import org.apache.lucene.analysis.standard.*;
import org.apache.lucene.analysis.standard.std31.*;
import org.apache.lucene.analysis.tokenattributes.*;
import org.apache.lucene.collation.*;
import org.apache.lucene.document.*;
import org.apache.lucene.document.Field.Index;
import org.apache.lucene.document.Field.Store;
import org.apache.lucene.index.*;
import org.apache.lucene.index.IndexWriter.MaxFieldLength;
import org.apache.lucene.messages.*;
import org.apache.lucene.queryParser.*;
import org.apache.lucene.search.*;
import org.apache.lucene.search.function.*;
import org.apache.lucene.search.payloads.*;
import org.apache.lucene.search.spans.*;
import org.apache.lucene.store.*;
import org.apache.lucene.util.*;
import org.apache.lucene.util.fst.*;
import org.apache.lucene.util.packed.*;

import java.io.File;
import java.sql.*;
import java.util.HashMap;

public class ExactPhrasesearchUsingStandardAnalyser {

    /**
     * @param args
     */
    public static void main(String[] args) throws Exception {
        Directory directory = new RAMDirectory();
        StandardAnalyzer analyzer = new StandardAnalyzer(Version.LUCENE_35);
        MaxFieldLength mlf = MaxFieldLength.UNLIMITED;
        IndexWriter writer = new IndexWriter(directory, analyzer, true, mlf);
        writer.addDocument(createDocument1("1", "foo bar baz blue"));
        writer.addDocument(createDocument1("2", "red green blue"));
        writer.addDocument(createDocument1("3", "test panda foo & bar testt"));
        writer.addDocument(createDocument1("4", " bar test test foo in panda  red blue "));
        writer.addDocument(createDocument1("4", "test"));
        writer.close();

    IndexSearcher searcher = new IndexSearcher(directory);
    PhraseQuery query = new PhraseQuery();


    QueryParser qp2 = new QueryParser(Version.LUCENE_35, "contents", analyzer);
    //qp.setDefaultOperator(QueryParser.Operator.AND);
    Query queryx2 =qp2.parse("test foo in panda re*");//contains query
    Query queryx23 =qp2.parse("+red +green +blu*"  );//exact phrase match query.Make last word as followed by star
    Query queryx234 =qp2.parse("(+red +green +blu*)& (\"red* green\") "  );





     /*String term = "new york";
        // id and location are the fields in which i want to search the "term"
        MultiFieldQueryParser queryParser = new MultiFieldQueryParser(
                                           Version.LUCENE_35,
                                           { "contents"},
                                           new KeywordAnalyzer());
        Query query = queryParser.parse(term);
        System.out.println(query.toString());*/

    QueryParser qp = new QueryParser(Version.LUCENE_35, "contents", analyzer);
    //qp.setDefaultOperator(QueryParser.Operator.AND);

    Query queryx =qp.parse("\"air quality\"~10");
    System.out.println("******************Searching Code starts******************");
    TopDocs topDocs = searcher.search(queryx2, 10);
    for (ScoreDoc scoreDoc : topDocs.scoreDocs) {
        Document doc = searcher.doc(scoreDoc.doc);
        System.out.println(doc+"testtttttttt");
    }

}



   private static Document createDocument1(String id, String content) {
        Document doc = new Document();
        doc.add(new Field("id", id, Store.YES, Index.NOT_ANALYZED));
        doc.add(new Field("contents", content, Store.YES, Index.ANALYZED,
                Field.TermVector.WITH_POSITIONS_OFFSETS));
        System.out.println(content);
        return doc;
    }
}

私はこの方法を試しました.contains形式を検索できます.しかし、ユーザーが「インドへ」を押してから「インド明日」と「インド今日」の結果も表示されるように、オプションで開始することはできません. 「+india* +to*」を実行するとそれに近づきますが、この結果は「Indians today」にもなります。ユーザー タイプが「today」になるまで検索結果を取得できません。基本的には、フレーズ クエリ「\」india が必要です。今日\"出勤。

4

1 に答える 1

1

分析されたフィールドの 1 つの方法は、MultiPhraseQueryを、既に列挙されているプレフィックス タームと共に使用することです。

<MultiPhraseQuery: field:"india (today todays)">

または、SpanQueryを使用することもできます。利点は、用語展開を処理できることです。

<SpanNearQuery: spanNear([field:india, SpanMultiTermQueryWrapper(field:today*)], 0, true)>
于 2012-05-31T16:25:08.583 に答える