<small id='4iyIv'></small><noframes id='4iyIv'>

  • <i id='4iyIv'><tr id='4iyIv'><dt id='4iyIv'><q id='4iyIv'><span id='4iyIv'><b id='4iyIv'><form id='4iyIv'><ins id='4iyIv'></ins><ul id='4iyIv'></ul><sub id='4iyIv'></sub></form><legend id='4iyIv'></legend><bdo id='4iyIv'><pre id='4iyIv'><center id='4iyIv'></center></pre></bdo></b><th id='4iyIv'></th></span></q></dt></tr></i><div id='4iyIv'><tfoot id='4iyIv'></tfoot><dl id='4iyIv'><fieldset id='4iyIv'></fieldset></dl></div>

        <legend id='4iyIv'><style id='4iyIv'><dir id='4iyIv'><q id='4iyIv'></q></dir></style></legend>
        • <bdo id='4iyIv'></bdo><ul id='4iyIv'></ul>

        <tfoot id='4iyIv'></tfoot>

        在 Lucene 中索引和搜索日期

        时间:2023-09-29

      1. <tfoot id='okDhs'></tfoot>
        <legend id='okDhs'><style id='okDhs'><dir id='okDhs'><q id='okDhs'></q></dir></style></legend>

            <small id='okDhs'></small><noframes id='okDhs'>

                <tbody id='okDhs'></tbody>
              • <i id='okDhs'><tr id='okDhs'><dt id='okDhs'><q id='okDhs'><span id='okDhs'><b id='okDhs'><form id='okDhs'><ins id='okDhs'></ins><ul id='okDhs'></ul><sub id='okDhs'></sub></form><legend id='okDhs'></legend><bdo id='okDhs'><pre id='okDhs'><center id='okDhs'></center></pre></bdo></b><th id='okDhs'></th></span></q></dt></tr></i><div id='okDhs'><tfoot id='okDhs'></tfoot><dl id='okDhs'><fieldset id='okDhs'></fieldset></dl></div>

                  <bdo id='okDhs'></bdo><ul id='okDhs'></ul>
                • 本文介绍了在 Lucene 中索引和搜索日期的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

                  问题描述

                  我尝试使用 DateTools.dateToString() 方法来索引日期.它可以正常用于索引和搜索.

                  I tried it to index date with DateTools.dateToString() method. Its working properly for indexing as well as searching.

                  但是我已经索引的数据有一些引用,它已经将 Date 索引为一个新的 Date().getTime().

                  But my already indexed data which has some references is in such a way that it has indexed Date as a new Date().getTime().

                  所以我的问题是如何对这些数据执行 RangeSearch Query...

                  So my problem is how to perform RangeSearch Query on this data...

                  有什么解决办法吗???

                  Any solution to this???

                  提前致谢.

                  推荐答案

                  您需要在日期字段上使用 TermRangeQuery.该字段始终需要使用 DateTools.dateToString() 进行索引才能正常工作.下面是使用 Lucene 3.0 对日期范围进行索引和搜索的完整示例:

                  You need to use a TermRangeQuery on your date field. That field always needs to be indexed with DateTools.dateToString() for it to work properly. Here's a full example of indexing and searching on a date range with Lucene 3.0:

                  public class LuceneDateRange {
                      public static void main(String[] args) throws Exception {
                          // setup Lucene to use an in-memory index
                          Directory directory = new RAMDirectory();
                          Analyzer analyzer = new StandardAnalyzer(Version.LUCENE_30);
                          MaxFieldLength mlf = MaxFieldLength.UNLIMITED;
                          IndexWriter writer = new IndexWriter(directory, analyzer, true, mlf);
                  
                          // use the current time as the base of dates for this example
                          long baseTime = System.currentTimeMillis();
                  
                          // index 10 documents with 1 second between dates
                          for (int i = 0; i < 10; i++) {
                              Document doc = new Document();
                              String id = String.valueOf(i);
                              String date = buildDate(baseTime + i * 1000);
                              doc.add(new Field("id", id, Store.YES, Index.NOT_ANALYZED));
                              doc.add(new Field("date", date, Store.YES, Index.NOT_ANALYZED));
                              writer.addDocument(doc);
                          }
                          writer.close();
                  
                          // search for documents from 5 to 8 seconds after base, inclusive
                          IndexSearcher searcher = new IndexSearcher(directory);
                          String lowerDate = buildDate(baseTime + 5000);
                          String upperDate = buildDate(baseTime + 8000);
                          boolean includeLower = true;
                          boolean includeUpper = true;
                          TermRangeQuery query = new TermRangeQuery("date",
                                  lowerDate, upperDate, includeLower, includeUpper);
                  
                          // display search results
                          TopDocs topDocs = searcher.search(query, 10);
                          for (ScoreDoc scoreDoc : topDocs.scoreDocs) {
                              Document doc = searcher.doc(scoreDoc.doc);
                              System.out.println(doc);
                          }
                      }
                  
                      public static String buildDate(long time) {
                          return DateTools.dateToString(new Date(time), Resolution.SECOND);
                      }
                  }
                  

                  这篇关于在 Lucene 中索引和搜索日期的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持html5模板网!

                  上一篇:使用 Solr 索引多种语言 下一篇:向 Lucene 文档添加多值字符串字段,逗号重要吗

                  相关文章

                  最新文章

                    • <bdo id='jp0r1'></bdo><ul id='jp0r1'></ul>

                    <small id='jp0r1'></small><noframes id='jp0r1'>

                    <legend id='jp0r1'><style id='jp0r1'><dir id='jp0r1'><q id='jp0r1'></q></dir></style></legend>

                    1. <i id='jp0r1'><tr id='jp0r1'><dt id='jp0r1'><q id='jp0r1'><span id='jp0r1'><b id='jp0r1'><form id='jp0r1'><ins id='jp0r1'></ins><ul id='jp0r1'></ul><sub id='jp0r1'></sub></form><legend id='jp0r1'></legend><bdo id='jp0r1'><pre id='jp0r1'><center id='jp0r1'></center></pre></bdo></b><th id='jp0r1'></th></span></q></dt></tr></i><div id='jp0r1'><tfoot id='jp0r1'></tfoot><dl id='jp0r1'><fieldset id='jp0r1'></fieldset></dl></div>
                      <tfoot id='jp0r1'></tfoot>