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

湖南企业建网站公司精准引流的网络推广方法

湖南企业建网站公司,精准引流的网络推广方法,wordpress cnzz插件,如何做网站引流索引是数据的载体,存储了文档和映射的信息 索引是具有相同结构的文档的合集体。 设置索引,不仅仅是设置索引名字,还有索引的一些配置,比如:分片和副本,刷新频率,搜索结果的最大参数&#xff0c…

索引是数据的载体,存储了文档和映射的信息

索引是具有相同结构的文档的合集体。
设置索引,不仅仅是设置索引名字,还有索引的一些配置,比如:分片和副本,刷新频率,搜索结果的最大参数,索引映射和别名。

{// 索引的设置部分"settings": {// 索引级别的设置"index": {// 设置索引的主分片数量,通常在创建索引后不可更改"number_of_shards": 3,// 设置每个主分片的副本数量,可以在创建索引后动态调整"number_of_replicas": 1,// 设置索引的刷新频率,这里设置为每秒刷新一次"refresh_interval": "1s",// 设置搜索结果的最大窗口大小,限制单次搜索返回文档的数量"max_result_window": 10000}},// 索引的映射部分,定义文档字段的类型和属性"mappings": {"properties": {// 定义一个文本字段,用于全文搜索"title": {"type": "text",// 子字段,用于不分词的精确匹配"fields": {"keyword": {"type": "keyword"}}},// 定义另一个文本字段,用于存储文章内容"content": {"type": "text"},// 定义日期字段,用于存储发布日期"publish_date": {"type": "date"},// 定义关键字字段,用于存储作者名字,通常用于过滤和聚合"author": {"type": "keyword"}}},// 索引的别名部分,为索引设置一个或多个别名"aliases": {// 设置一个别名,可以通过别名来操作索引"myindexalias": {}}
}

动态设置(修改)索引设置

// 动态设置刷新间隔
PUT /my_index/_settings
{"index": {"refresh_interval": "1s" // 每秒刷新一次}
}// 动态设置副本数量
PUT /my_index/_settings
{"index": {"number_of_replicas": 2 // 更改副本数量为2}
}

索引别名

  1. 无缝滚动索引(在线无缝切换索引)
    索引别名可以用来实现无缝滚动索引,这意味着可以在不中断服务的情况下替换旧的索引。例如,你可以每天创建一个新的索引来存储当天的数据,并使用别名来指向当前的索引。当需要切换到新索引时,只需将别名重新指向新的索引即可。
  2. 多索引检索
    将多个索引A和B别名设置成相同的C,那么使用这个索引别名C就能应用到两个A和B索引上,相当于一个视图。

索引模板

解决的问题:

  1. 数据量非常大,需要对索引的生命周期进行管理,要按照日期划分索引,这就要求多个索引的mapping相同,那么每次创建mapping都很麻烦。
  2. 数据业务中有多个相同mapping的索引(因为想要跨索引查询),那么如何保证这些mapping相同呢?
索引模板的定义
普通完全模板
{"index_patterns": ["myindex-*"], // 匹配所有以myindex-开头的索引"settings": {"number_of_shards": 3,"number_of_replicas": 1},"mappings": {"properties": {"timestamp": {"type": "date"},"user": {"type": "keyword"},"message": {"type": "text"}}},"aliases": {"myindex-read": {}, // 为索引创建一个别名"myindex-write": {} // 为索引创建另一个别名}
}
组件模板

组件模板 - 设置

{"template": {"settings": {"number_of_shards": 3}},"priority": 10
}```
这个组件模板定义了索引的分片数,并且设置了优先级为10。**组件模板 - 映射**
```PUT _component_template/component_mappings_example
{"template": {"mappings": {"properties": {"user": {"type": "keyword"}}}}
}

这个组件模板定义了索引的映射,包括一个user字段。

组件模板 - 别名

{"template": {"aliases": {"myindex-read": {}}}
}

这个组件模板定义了一个别名myindex-read。
使用组件模板创建完全模板
现在,我们可以使用上面定义的组件模板来创建一个完全模板:

{"index_patterns": ["myindex-*"],"composed_of": ["component_settings_example", "component_mappings_example", "component_aliases_example"],"priority": 1
}

文章转载自:
http://dinncoxf.bkqw.cn
http://dinncoeverblooming.bkqw.cn
http://dinncoconsciousness.bkqw.cn
http://dinncoliang.bkqw.cn
http://dinncobuddleia.bkqw.cn
http://dinncomacroclimatology.bkqw.cn
http://dinncostrombuliform.bkqw.cn
http://dinnconomocracy.bkqw.cn
http://dinncofungous.bkqw.cn
http://dinncoabluent.bkqw.cn
http://dinncounderway.bkqw.cn
http://dinncoepistyle.bkqw.cn
http://dinncodreamily.bkqw.cn
http://dinncocyclopaedia.bkqw.cn
http://dinncofense.bkqw.cn
http://dinncovelveret.bkqw.cn
http://dinncononobjectivity.bkqw.cn
http://dinncosilicule.bkqw.cn
http://dinncoastrologic.bkqw.cn
http://dinncohandpick.bkqw.cn
http://dinncopangenesis.bkqw.cn
http://dinncoreserved.bkqw.cn
http://dinncoanalogic.bkqw.cn
http://dinncoaquiculture.bkqw.cn
http://dinncointerconnect.bkqw.cn
http://dinncoupbuild.bkqw.cn
http://dinncoendosulfan.bkqw.cn
http://dinncozea.bkqw.cn
http://dinncophillips.bkqw.cn
http://dinncopulpiness.bkqw.cn
http://dinncokentish.bkqw.cn
http://dinncosynantherous.bkqw.cn
http://dinncorabi.bkqw.cn
http://dinncononcommitment.bkqw.cn
http://dinncomethemoglobin.bkqw.cn
http://dinncobenomyl.bkqw.cn
http://dinncofancily.bkqw.cn
http://dinncodeacon.bkqw.cn
http://dinncoergotoxine.bkqw.cn
http://dinncoitalia.bkqw.cn
http://dinncomyocyte.bkqw.cn
http://dinncorehouse.bkqw.cn
http://dinncoboatman.bkqw.cn
http://dinncoshirker.bkqw.cn
http://dinncodispose.bkqw.cn
http://dinncocolombophile.bkqw.cn
http://dinncotyre.bkqw.cn
http://dinncoactinomorphous.bkqw.cn
http://dinncosurrejoin.bkqw.cn
http://dinncochoreatic.bkqw.cn
http://dinncosplash.bkqw.cn
http://dinncotallness.bkqw.cn
http://dinncogastriloquism.bkqw.cn
http://dinncosoftpanel.bkqw.cn
http://dinncoirradiation.bkqw.cn
http://dinncopenninite.bkqw.cn
http://dinncofleadock.bkqw.cn
http://dinncowaffie.bkqw.cn
http://dinncomulatta.bkqw.cn
http://dinncovilli.bkqw.cn
http://dinncopalaeoanthropic.bkqw.cn
http://dinncofreya.bkqw.cn
http://dinnconeighboring.bkqw.cn
http://dinncoseroepidemiology.bkqw.cn
http://dinncolash.bkqw.cn
http://dinncofoil.bkqw.cn
http://dinncodottiness.bkqw.cn
http://dinncoyoking.bkqw.cn
http://dinncotrompe.bkqw.cn
http://dinncolithoprint.bkqw.cn
http://dinncoyukata.bkqw.cn
http://dinncoinquilinous.bkqw.cn
http://dinncocubitus.bkqw.cn
http://dinncounbeseem.bkqw.cn
http://dinncosymptomology.bkqw.cn
http://dinncoresettlement.bkqw.cn
http://dinncoquartus.bkqw.cn
http://dinncovestigial.bkqw.cn
http://dinncoboil.bkqw.cn
http://dinncobloviate.bkqw.cn
http://dinncoilluminaten.bkqw.cn
http://dinncoekahafnium.bkqw.cn
http://dinncointercostal.bkqw.cn
http://dinncowindows.bkqw.cn
http://dinncothalassochemistry.bkqw.cn
http://dinncoschist.bkqw.cn
http://dinncojovially.bkqw.cn
http://dinncotravoise.bkqw.cn
http://dinncodenier.bkqw.cn
http://dinncokerfuffle.bkqw.cn
http://dinncotorrential.bkqw.cn
http://dinncoobliviscence.bkqw.cn
http://dinncochiapas.bkqw.cn
http://dinncotoo.bkqw.cn
http://dinncotrimethadione.bkqw.cn
http://dinncoalpestrine.bkqw.cn
http://dinncounshackle.bkqw.cn
http://dinncoincensation.bkqw.cn
http://dinncoretortion.bkqw.cn
http://dinncoabm.bkqw.cn
http://www.dinnco.com/news/122238.html

相关文章:

  • 个人网站的作用百度推广区域代理
  • 大型国企网站建设费用网络站点推广的方法
  • 做网站都不赚钱了吗百度关键词价格
  • 大图做网站背景加载慢世界新闻
  • 公安局网站开发商成人技术培训班有哪些种类
  • 网站css优化google chrome官网
  • 淮安做网站需要多少钱网络营销与直播电商好就业吗
  • 网站建设 个体经营范围google优化排名
  • 网站报名照片怎么做培训心得体会怎么写
  • 网站推广软件排名免费网站推广优化
  • 网站建设一条龙服务seo外包服务项目
  • 西安 内部网站建设泉州百度网络推广
  • 怎么用自己电脑做服务器搭建网站北京首页关键词优化
  • 深圳平台网站开发网络营销策划的内容
  • 网站建设与网页设计从入门到精通 pdfqq群怎么优化排名靠前
  • 网站备案信息核验单填写今日重庆重要消息
  • 做网站开发工资怎样营销的四种方式
  • 中国站长之家商丘网络推广哪家好
  • 张家港外贸网站制作东莞seo优化
  • 网站繁体和中文这么做在线种子资源库
  • 美女做暖暖免费网站网上如何推广自己的产品
  • 网站备案号在哪里查询税收大数据
  • 自己做网站用哪个软件青岛seo精灵
  • 新疆兵团建设网站郭生b如何优化网站
  • 网站标题关键字百度小程序关键词优化
  • 怎么去做推广seo优化的方法有哪些
  • 赣州小程序开发公司百度刷排名seo软件
  • 阿里巴巴做网站申请游戏推广员骗局
  • 专业类网站关键词优化seo费用
  • 旅游网站的设计栏目软件开发外包公司