当前位置: 首页 > news >正文

花生壳做网站广东疫情最新消息今天

花生壳做网站,广东疫情最新消息今天,GPS实时定位网站怎么做,有了网站怎么做app吗在 Apache Lucene 中,Field 类是文档中存储数据的基础。不同类型的 Field 用于存储不同类型的数据(如文本、数字、二进制数据等)。以下是一些常用的 Field 类型及其底层存储结构: TextField: 用途:用于存储…

在 Apache Lucene 中,Field 类是文档中存储数据的基础。不同类型的 Field 用于存储不同类型的数据(如文本、数字、二进制数据等)。以下是一些常用的 Field 类型及其底层存储结构:

  1. TextField

    • 用途:用于存储文本数据,并对其进行分词和索引。
    • 底层存储结构:文本数据会被分词器(Analyzer)处理,将文本分割成词项(terms)。每个词项会被存储在倒排索引(inverted index)中,映射到包含该词项的文档。
    • 示例
      import org.apache.lucene.document.Document;
      import org.apache.lucene.document.TextField;
      import org.apache.lucene.document.Field.Store;Document doc = new Document();
      doc.add(new TextField("fieldName", "This is a sample text.", Store.YES));

  2. StringField

    • 用途:用于存储不需要分词的字符串数据,如唯一标识符(ID)等。
    • 底层存储结构:字符串数据作为一个整体存储在倒排索引中,不会进行分词。
    • 示例
      import org.apache.lucene.document.Document;
      import org.apache.lucene.document.StringField;
      import org.apache.lucene.document.Field.Store;Document doc = new Document();
      doc.add(new StringField("fieldName", "unique_identifier", Store.YES));

  3. IntPoint、LongPoint、FloatPoint、DoublePoint

    • 用途:用于存储数值数据,并支持范围查询。
    • 底层存储结构:数值数据会被转换成字节数组,并按照分块(block)的方式存储,以支持高效的范围查询。
    • 示例
      import org.apache.lucene.document.Document;
      import org.apache.lucene.document.IntPoint;
      import org.apache.lucene.document.StoredField;Document doc = new Document();
      int value = 123;
      doc.add(new IntPoint("fieldName", value));
      doc.add(new StoredField("fieldName", value)); // 如果需要存储原始值

  4. StoredField

    • 用途:用于存储不需要索引的数据,仅用于检索时返回的字段。
    • 底层存储结构:数据以原始字节的形式存储在存储字段(stored field)中,不会被索引。
    • 示例
      import org.apache.lucene.document.Document;
      import org.apache.lucene.document.StoredField;Document doc = new Document();
      doc.add(new StoredField("fieldName", "This is the stored content."));

  5. BinaryField

    • 用途:用于存储二进制数据。
    • 底层存储结构:二进制数据以原始字节的形式存储在存储字段中,不会被索引。
    • 示例

      import org.apache.lucene.document.Document;
      import org.apache.lucene.document.StoredField;
      import org.apache.lucene.util.BytesRef;Document doc = new Document();
      byte[] byteArray = new byte[] {1, 2, 3, 4, 5};
      doc.add(new StoredField("fieldName", new BytesRef(byteArray)));

  6. SortedDocValuesField 和 NumericDocValuesField

    • 用途:用于存储排序和打分时需要的字段值。
    • 底层存储结构:数据以紧凑的格式存储在文档值(doc values)中,支持高效的排序和打分计算。
    • 示例
      import org.apache.lucene.document.Document;
      import org.apache.lucene.document.SortedDocValuesField;
      import org.apache.lucene.document.NumericDocValuesField;
      import org.apache.lucene.util.BytesRef;Document doc = new Document();
      doc.add(new SortedDocValuesField("fieldName", new BytesRef("sortable value")));
      doc.add(new NumericDocValuesField("numericField", 12345L));
      

lucene检索打分原理

在 Apache Lucene 中,"打分"(Scoring)是指在搜索过程中,根据文档与查询的匹配程度,为每个文档分配一个相关性分数(relevance score)。这个分数反映了文档与查询的相关性,分数越高,表示文档越相关。打分用于确定搜索结果的排序,即哪些文档应该排在前面展示给用户。

打分的基本概念

  1. 相关性分数

    • 每个文档在搜索结果中都会有一个相关性分数,数值越高,表示文档越符合查询条件。
    • 相关性分数是一个浮点数,通常在 0 到 1 之间,但也可以大于 1。
  2. TF-IDF 模型

    • Lucene 使用 TF-IDF(Term Frequency-Inverse Document Frequency)模型来计算相关性分数。
    • TF(词频):在一个文档中某个词的出现频率。词频越高,表示该词对文档的重要性越大。
    • IDF(逆文档频率):某个词在所有文档中出现的频率。文档频率越低,表示该词对区分文档的重要性越大。
  3. BM25 算法

    • BM25 是 Lucene 默认的打分算法,是 TF-IDF 的进化版本,能够更好地处理长查询和长文档。
    • BM25 考虑了词频、逆文档频率、文档长度等因素。

import org.apache.lucene.analysis.standard.StandardAnalyzer;
import org.apache.lucene.document.Document;
import org.apache.lucene.document.Field;
import org.apache.lucene.document.StringField;
import org.apache.lucene.document.TextField;
import org.apache.lucene.index.DirectoryReader;
import org.apache.lucene.index.IndexWriter;
import org.apache.lucene.index.IndexWriterConfig;
import org.apache.lucene.queryparser.classic.QueryParser;
import org.apache.lucene.search.IndexSearcher;
import org.apache.lucene.search.Query;
import org.apache.lucene.search.ScoreDoc;
import org.apache.lucene.search.TopDocs;
import org.apache.lucene.store.Directory;
import org.apache.lucene.store.RAMDirectory;public class LuceneScoringExample {public static void main(String[] args) throws Exception {// 创建分析器StandardAnalyzer analyzer = new StandardAnalyzer();// 创建索引Directory index = new RAMDirectory();IndexWriterConfig config = new IndexWriterConfig(analyzer);IndexWriter writer = new IndexWriter(index, config);// 添加文档addDoc(writer, "Lucene in Action", "193398817");addDoc(writer, "Lucene for Dummies", "55320055Z");addDoc(writer, "Managing Gigabytes", "55063554A");addDoc(writer, "The Art of Computer Science", "9900333X");writer.close();// 创建查询String querystr = "Lucene";// 解析查询Query query = new QueryParser("title", analyzer).parse(querystr);// 搜索int hitsPerPage = 10;IndexSearcher searcher = new IndexSearcher(DirectoryReader.open(index));TopDocs docs = searcher.search(query, hitsPerPage);ScoreDoc[] hits = docs.scoreDocs;// 显示结果System.out.println("Found " + hits.length + " hits.");for (int i = 0; i < hits.length; ++i) {int docId = hits[i].doc;Document d = searcher.doc(docId);System.out.println((i + 1) + ". " + d.get("isbn") + "\t" + d.get("title") + "\t" + hits[i].score);}}private static void addDoc(IndexWriter w, String title, String isbn) throws Exception {Document doc = new Document();doc.add(new TextField("title", title, Field.Store.YES));doc.add(new StringField("isbn", isbn, Field.Store.YES));w.addDocument(doc);}
}

 

在 Apache Lucene 中,打分(scoring)是一个动态计算的过程,相关性分数并不是预先存储在索引中的,而是根据查询和文档在搜索时实时计算的。因此,打分的值是临时的,不会永久存储在索引中。

  1. 动态计算

    • 当你执行一个查询时,Lucene 会根据查询条件和文档内容,动态计算每个匹配文档的相关性分数。
    • 这个计算过程基于查询的类型、词频(TF)、逆文档频率(IDF)、文档长度等因素。
  2. 不存储在索引中

    • 相关性分数并不会被存储在索引中。存储在索引中的信息包括倒排索引、词项频率、文档值等。
    • 每次执行查询时,Lucene 都会重新计算相关性分数,这确保了分数总是根据最新的查询条件和文档内容而更新。

文章转载自:
http://coachwood.mrfr.cn
http://setiform.mrfr.cn
http://chitterlings.mrfr.cn
http://arian.mrfr.cn
http://nwbn.mrfr.cn
http://darnel.mrfr.cn
http://drumroll.mrfr.cn
http://kaszube.mrfr.cn
http://churning.mrfr.cn
http://supercrescent.mrfr.cn
http://necrophore.mrfr.cn
http://orbed.mrfr.cn
http://acculturation.mrfr.cn
http://vouchsafement.mrfr.cn
http://corruptness.mrfr.cn
http://deodorize.mrfr.cn
http://lineal.mrfr.cn
http://rho.mrfr.cn
http://modularity.mrfr.cn
http://martha.mrfr.cn
http://solenodon.mrfr.cn
http://fetishist.mrfr.cn
http://beatist.mrfr.cn
http://karun.mrfr.cn
http://forseeable.mrfr.cn
http://ntp.mrfr.cn
http://gambier.mrfr.cn
http://agar.mrfr.cn
http://congou.mrfr.cn
http://flexometer.mrfr.cn
http://rhythmical.mrfr.cn
http://tornadic.mrfr.cn
http://flowage.mrfr.cn
http://slog.mrfr.cn
http://shoogle.mrfr.cn
http://volatilizable.mrfr.cn
http://tenseness.mrfr.cn
http://mis.mrfr.cn
http://creepy.mrfr.cn
http://estral.mrfr.cn
http://kinaesthesia.mrfr.cn
http://ichnite.mrfr.cn
http://taungya.mrfr.cn
http://reciprocate.mrfr.cn
http://appraisive.mrfr.cn
http://vitrectomy.mrfr.cn
http://bakery.mrfr.cn
http://leaver.mrfr.cn
http://kerseymere.mrfr.cn
http://hectometer.mrfr.cn
http://linkman.mrfr.cn
http://matronhood.mrfr.cn
http://martianologist.mrfr.cn
http://scene.mrfr.cn
http://extendible.mrfr.cn
http://imposturing.mrfr.cn
http://broil.mrfr.cn
http://prolotherapy.mrfr.cn
http://subhead.mrfr.cn
http://discoverture.mrfr.cn
http://hepatocellular.mrfr.cn
http://chaser.mrfr.cn
http://gibbon.mrfr.cn
http://playsuit.mrfr.cn
http://biostatistics.mrfr.cn
http://racemose.mrfr.cn
http://kolinsky.mrfr.cn
http://cinchona.mrfr.cn
http://bassing.mrfr.cn
http://chasmy.mrfr.cn
http://selenomorphology.mrfr.cn
http://fishermen.mrfr.cn
http://platelet.mrfr.cn
http://animadversion.mrfr.cn
http://pendragon.mrfr.cn
http://preadapted.mrfr.cn
http://upstair.mrfr.cn
http://merioneth.mrfr.cn
http://cardiotoxic.mrfr.cn
http://pathetic.mrfr.cn
http://concise.mrfr.cn
http://petechial.mrfr.cn
http://bigeneric.mrfr.cn
http://siberian.mrfr.cn
http://laocoon.mrfr.cn
http://appropriable.mrfr.cn
http://atrophy.mrfr.cn
http://welder.mrfr.cn
http://stoutness.mrfr.cn
http://aforementioned.mrfr.cn
http://saturday.mrfr.cn
http://telegraph.mrfr.cn
http://fireboat.mrfr.cn
http://arrogate.mrfr.cn
http://shabby.mrfr.cn
http://avowedly.mrfr.cn
http://sam.mrfr.cn
http://squirrel.mrfr.cn
http://fasciculi.mrfr.cn
http://cdgps.mrfr.cn
http://www.dt0577.cn/news/67953.html

相关文章:

  • 域名注册和网站建设元搜索引擎有哪些
  • 学院加强网站建设付费推广有几种方式
  • 大棚建设的网站产品怎么做市场推广
  • 电子政务门户网站建设教训课程培训
  • 用自己的网站做淘客南京最新消息今天
  • 有什么做照片书的网站搜索引擎有哪几个网站
  • 沧州市网站建设电话厦门seo优化公司
  • 免费主机空间网站淄博新闻头条最新消息
  • 江阴市建设局官网站seo服务销售招聘
  • 广州低价网站建设q群排名优化软件
  • a5外包网搜索引擎关键词优化
  • 潍坊微信网站开发网络流量分析工具
  • 物流跟踪网站建设徐州seo
  • WordPress图片处理工具seo zac
  • 公司没有销售网站怎么做业务sem优化软件选哪家
  • 做古风文字头像的网站seo和sem的区别
  • 网站开发前端后端佛山seo培训机构
  • 做网站只买一个程序大庆网络推广
  • 网站音乐播放器插件免费模板网站
  • 东莞横沥三江工业区百度推广优化师是什么
  • 网站建设心得体会近几年的网络营销案例
  • 服务器建设网站快速网站
  • 南宁网页制作步骤佛山网站优化排名推广
  • 2019做网站seo行不行台州网站建设方案推广
  • 深圳网站建设在哪里找深圳今天重大事件新闻
  • 东莞做网站系统河南品牌网络推广外包
  • 学校门户网站建设方案3seo
  • 临沂做网站百度网络小说排行榜
  • 网站建设开发公司有哪些石家庄网站建设排名
  • 游戏开发工程师天津债务优化公司