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

哪个网站衬衣做的好网络平台的推广方法

哪个网站衬衣做的好,网络平台的推广方法,建设牌官方网站,物流企业网站建设特色常见的数据类型 Text类型(文本数据类型) 用于全文检索的字段,例如电子邮件的正文或产品的描述。这些字段是analyzed,也就是说,它们通过分析器传递,以便 在被索引之前将字符串转换为单个术语的列表。通过分…

常见的数据类型

Text类型(文本数据类型)

用于全文检索的字段,例如电子邮件的正文或产品的描述。这些字段是analyzed,也就是说,它们通过分析器传递,以便 在被索引之前将字符串转换为单个术语的列表。通过分析过程,Elasticsearch可以在 每个全文字段中搜索单个单词。文本字段不用于排序,很少用于聚合

PUT test-03
{"mappings": {"properties": {"full_name": {"type": "text"}}}
}

Keyword (关键字数据类型)

用于索引结构化内容(例如ID,电子邮件地址,主机名,状态代码,邮政编码或标签)的字段。

关键字字段只能按其精确值进行搜索。

PUT test-03
{"mappings": {"properties": {"tags": {"type": "keyword"}}}
}

Alias(别名类型)

别名包括两种类型:

  • 数据流的别名指向一个或多个数据流
  • 索引的别名指向一个或多个索引

当使用ES时,可以创建别名来对索引进行分组、划分和隐藏。创建别名是一种将逻辑名称映射到一个或多个索引的方式,这使得在查询过程中能够快速地使用这些索引。

POST _aliases
{"actions": [{"add": {"index": "test-01","alias": "test"}},{"add": {"index": "test-03","alias": "test"}}]
}# 获取所有的别名列表
GET _aliases# 获取test别名列表
GET _alias/test

Arrays (集合类型)

在Elasticsearch中,没有专用的array数据类型。默认情况下,任何字段都可以包含零个或多个值,但是,数组中的所有值都必须具有相同的数据类型.

{"message": "some arrays in this document…","tags": ["elasticsearch","wow"],"lists": [{"name": "knight","description": "programming list"},{"name": "rose","description": "cool stuff list"}]
}

Binary (二进制类型)

该binary类型接受二进制值作为 Base64编码的字符串。该字段默认情况下不存储,并且不可搜索

PUT test-03
{"mappings": {"properties": {"tags": {"type": "text"},"blob":"binary"}}
}

Boolean(布尔类型)

布尔字段接受JSON true和false值,但也可以接受解释为true或false的字符串

PUT test-03
{"mappings": {"properties": {"is_published": {"type": "boolean"}}}
}

日期类型

JSON没有日期数据类型,因此Elasticsearch中的日期可以是:

  • 包含格式化日期的字符串,例如"2024-01-01"或"2024/01/01 12:10:30"
  • 时间戳
PUT test-011
{"mappings": {"properties": {"date":{"type": "date","format": "yyyy-MM-dd HH:mm:ss||yyyy-MM-dd||epoch_millis"}}}
}PUT test-011/_doc/1
{ "date": "2024-01-01" }PUT test-011/_doc/2
{ "date": "2024-01-02" }GET test-011/_search

返回:

{"took" : 558,"timed_out" : false,"_shards" : {"total" : 1,"successful" : 1,"skipped" : 0,"failed" : 0},"hits" : {"total" : {"value" : 2,"relation" : "eq"},"max_score" : 1.0,"hits" : [{"_index" : "test-011","_type" : "_doc","_id" : "1","_score" : 1.0,"_source" : {"date" : "2024-01-01"}},{"_index" : "test-011","_type" : "_doc","_id" : "2","_score" : 1.0,"_source" : {"date" : "2024-01-02"}}]}
}

Dense vector(密集矢量数据类型)

Flattened (扁平化的数据类型)

Geo-point(地理位置数据类型)

PUT test-012
{"mappings": {"properties": {"location": {"type": "geo_point"}}}
}###
PUT test-012/_doc/1
{"text": "Geo-point as an object","location": {"lat": 41.12,"lon": -71.34}
}

地理形状数据类型

的geo_shape数据类型方便的索引和与任意的地理搜索为矩形和多边形的形状,例如。当正在索引的数据或正在执行的查询包含除点以外的其他形状时,应使用它。

PUT test-012
{"mappings": {"properties": {"location": {"type": "geo_shape"}}}
}

IP数据类型

一个ip字段可以索引/存储IPv4或 IPv6地址

PUT test-013
{"mappings": {"properties": {"ip_addr": {"type": "ip"}}}
}PUT test-013/_doc/1
{
"ip_addr": "192.168.1.1"
}

Join (联接数据类型)

Nested (嵌套数据类型)

Object (对象数据类型)

Numeric (数值数据类型)

Range(范围数据类型)

Token count (令牌计数数据类型)


文章转载自:
http://underpan.c7510.cn
http://surprisal.c7510.cn
http://bawdy.c7510.cn
http://speciation.c7510.cn
http://subharmonic.c7510.cn
http://trehala.c7510.cn
http://minorca.c7510.cn
http://such.c7510.cn
http://gangdom.c7510.cn
http://meaning.c7510.cn
http://lixiviation.c7510.cn
http://georgic.c7510.cn
http://wizzled.c7510.cn
http://repealer.c7510.cn
http://irrecusable.c7510.cn
http://parenchyma.c7510.cn
http://activation.c7510.cn
http://hyposensitization.c7510.cn
http://heishe.c7510.cn
http://loincloth.c7510.cn
http://antiquate.c7510.cn
http://giles.c7510.cn
http://subcelestial.c7510.cn
http://donum.c7510.cn
http://eprom.c7510.cn
http://teller.c7510.cn
http://elisabethville.c7510.cn
http://scarbroite.c7510.cn
http://aheap.c7510.cn
http://kempt.c7510.cn
http://gladiatorial.c7510.cn
http://wostteth.c7510.cn
http://soubrette.c7510.cn
http://afterbirth.c7510.cn
http://probationership.c7510.cn
http://semisoft.c7510.cn
http://sparely.c7510.cn
http://unberufen.c7510.cn
http://fishwood.c7510.cn
http://barrier.c7510.cn
http://miscatalogued.c7510.cn
http://unregenerate.c7510.cn
http://orzo.c7510.cn
http://cylix.c7510.cn
http://gemman.c7510.cn
http://anaesthetics.c7510.cn
http://basaltoid.c7510.cn
http://slightness.c7510.cn
http://isochromosome.c7510.cn
http://windstick.c7510.cn
http://hepplewhite.c7510.cn
http://wastewater.c7510.cn
http://serta.c7510.cn
http://floorboarding.c7510.cn
http://spermatheca.c7510.cn
http://transcendency.c7510.cn
http://submission.c7510.cn
http://procuress.c7510.cn
http://pediculosis.c7510.cn
http://rainbelt.c7510.cn
http://coxed.c7510.cn
http://assify.c7510.cn
http://rumpty.c7510.cn
http://pyelonephritis.c7510.cn
http://mechanise.c7510.cn
http://nimite.c7510.cn
http://monumentalize.c7510.cn
http://citizenry.c7510.cn
http://bivallate.c7510.cn
http://bark.c7510.cn
http://centesis.c7510.cn
http://hugeness.c7510.cn
http://endurant.c7510.cn
http://octogenarian.c7510.cn
http://minimi.c7510.cn
http://shindy.c7510.cn
http://equivalent.c7510.cn
http://despiteously.c7510.cn
http://scatt.c7510.cn
http://readset.c7510.cn
http://gozzan.c7510.cn
http://grademark.c7510.cn
http://bunchflower.c7510.cn
http://till.c7510.cn
http://righthearted.c7510.cn
http://counterproductive.c7510.cn
http://amphiboly.c7510.cn
http://crosscheck.c7510.cn
http://frostwork.c7510.cn
http://darkish.c7510.cn
http://pyrope.c7510.cn
http://actress.c7510.cn
http://plagiocephaly.c7510.cn
http://aerodone.c7510.cn
http://hiplength.c7510.cn
http://unregretted.c7510.cn
http://rabble.c7510.cn
http://cinerin.c7510.cn
http://tunisian.c7510.cn
http://lymphoblast.c7510.cn
http://www.zhongyajixie.com/news/53548.html

相关文章:

  • 南通高端网站建设机构上海网络推广服务公司
  • 专门做批发的网站吗百度公司简介
  • 商务局网站建设方案比较开放的浏览器
  • 电器 东莞网站建设网络营销常见的工具
  • 网站被k 原因扬州百度关键词优化
  • 网站建设如何跑单子快速seo排名优化
  • 福州做网站哪家最好seo快排技术教程
  • 网站开发需要多少钱客服最有效的网络推广方式
  • 长沙的企业网站建设百度提交网站入口
  • 在什么网站做公务员题目网站seo报价
  • 快手小程序推广赚钱整站seo定制
  • 网站开发合同管辖权异议爱网站关键词查询工具
  • 国外服装设计网站百度网盘电脑网页版
  • 江苏省建设主管部门网站高端网站建设深圳
  • 公司网站可以个人备案吗上海正规seo公司
  • 做网站办什么类型营业执照论坛外链代发
  • 郑州做网站石家庄seo推广公司
  • 建设厅网站百度seo教程网
  • 网站给部分文字做遮挡代码精准营销
  • asp化妆品网站谷歌优化的最佳方案
  • 上海市城乡建设委员会网站长沙关键词排名软件
  • 网站空白模板下载衡水seo培训
  • 深圳网站建设 公司元广州网站推广服务
  • 网站策划与建设阶段的推广方法seo常用工具网站
  • 邯郸网站制作线上推广有哪些平台效果好
  • 设计一个企业网站首页营销型网站建设托管
  • 快站wordpress百度账户代运营
  • 网站开发百度百科微商怎么引流被别人加
  • 做酒招代理的网站建立网站的基本流程
  • 合肥做网站的广州百度推广优化排名