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

做网站获取手机号码上海外包seo

做网站获取手机号码,上海外包seo,做的很酷炫的网站,如何做产品网站目录 一、Solr 安装与配置 1.1 下载与安装 1.2 启动与停止 二、Core 和 Collection 管理 2.1 创建与删除 2.2 核心操作 三、索引管理 3.1 添加与删除文档 3.2 批量操作 3.3 提交与优化 四、查询与检索 4.1 基本查询 4.2 高级查询 五、Schema 管理 5.1 字段管理 …

目录

一、Solr 安装与配置

1.1 下载与安装

1.2 启动与停止

二、Core 和 Collection 管理

2.1 创建与删除

2.2 核心操作

三、索引管理

3.1 添加与删除文档

3.2 批量操作

3.3 提交与优化

四、查询与检索

4.1 基本查询

4.2 高级查询

五、Schema 管理

5.1 字段管理

5.2 字段类型管理

六、备份与恢复

6.1 创建备份

6.2 恢复备份


Apache Solr 是一个强大的开源搜索平台,广泛应用于各种搜索和数据分析应用中。本文将介绍 Solr 中最常用的命令,涵盖安装与配置、Core 和 Collection 管理、索引管理、查询与检索、Schema 管理、以及备份与恢复等方面。

一、Solr 安装与配置

1.1 下载与安装

1.1.1 下载 Solr
从 Solr 官方网站 下载最新版本。

1.1.2 安装 Solr

tar xzf solr-8.8.2.tgz
cd solr-8.8.2
1.2 启动与停止

1.2.1 启动 Solr

bin/solr start

1.2.2 停止 Solr

bin/solr stop

1.2.3 启动特定端口上的 Solr

bin/solr start -p 8983

1.2.4 查看 Solr 运行状态

bin/solr status

二、Core 和 Collection 管理

2.1 创建与删除

2.1.1 创建新的 Core

bin/solr create -c mycore

2.1.2 删除 Core

bin/solr delete -c mycore

2.1.3 创建新的 Collection

bin/solr create -c mycollection -n data_driven_schema_configs

2.1.4 删除 Collection

bin/solr delete -c mycollection
2.2 核心操作

2.2.1 重载 Core

bin/solr reload -c mycore

2.2.2 重命名 Core

bin/solr rename -c oldname -newname newname

2.2.3 查看所有 Cores

bin/solr cores

三、索引管理

3.1 添加与删除文档

3.1.1 添加单个文档

curl http://localhost:8983/solr/mycore/update?commit=true -d '{"id":"1", "title":"Solr Guide"}'

3.1.2 删除单个文档

curl http://localhost:8983/solr/mycore/update?commit=true -d '{"delete":{"id":"1"}}'控制台删除文档
<delete><query>ID:551712</query></delete>

3.1.3 删除符合条件的文档

curl http://localhost:8983/solr/mycore/update?commit=true -d '{"delete":{"query":"title:Solr Guide"}}'
3.2 批量操作

3.2.1 批量添加文档

curl http://localhost:8983/solr/mycore/update?commit=true --data-binary @documents.json -H 'Content-type:application/json'

3.2.2 批量删除文档

curl http://localhost:8983/solr/mycore/update?commit=true -d @delete_query.json -H 'Content-type:application/json'
3.3 提交与优化

3.3.1 提交更改

curl http://localhost:8983/solr/mycore/update?commit=true

3.3.2 优化索引

curl http://localhost:8983/solr/mycore/update?optimize=true

四、查询与检索

4.1 基本查询

4.1.1 简单查询

curl http://localhost:8983/solr/mycore/select?q=title:Solr

4.1.2 分页查询

curl http://localhost:8983/solr/mycore/select?q=title:Solr&start=0&rows=10

4.1.3 排序查询

curl http://localhost:8983/solr/mycore/select?q=title:Solr&sort=id asc
4.2 高级查询

4.2.1 过滤查询

curl http://localhost:8983/solr/mycore/select?q=title:Solr&fq=author:John

4.2.2 字段查询

curl http://localhost:8983/solr/mycore/select?q=title:Solr&fl=id,title

4.2.3 范围查询

curl http://localhost:8983/solr/mycore/select?q=price:[10 TO 50]

五、Schema 管理

5.1 字段管理

5.1.1 添加新字段

curl -X POST -H 'Content-type:application/json' --data-binary '{"add-field":{"name":"newfield","type":"string","stored":true }}' http://localhost:8983/solr/mycore/schema

5.1.2 删除字段

curl -X POST -H 'Content-type:application/json' --data-binary '{"delete-field":{"name":"newfield"}}' http://localhost:8983/solr/mycore/schema
5.2 字段类型管理

5.2.1 添加字段类型

curl -X POST -H 'Content-type:application/json' --data-binary '{"add-field-type":{"name":"newtype","class":"solr.TextField","analyzer":{"tokenizer":{"class":"solr.StandardTokenizerFactory"}}}}' http://localhost:8983/solr/mycore/schema

5.2.2 删除字段类型

curl -X POST -H 'Content-type:application/json' --data-binary '{"delete-field-type":{"name":"newtype"}}' http://localhost:8983/solr/mycore/schema

六、备份与恢复

6.1 创建备份

6.1.1 创建快照

curl http://localhost:8983/solr/admin/cores?action=BACKUP&core=mycore&location=/path/to/backup/dir

6.1.2 创建 Collection 备份

bin/solr create_collection_backup -c mycollection -d /path/to/backup/dir
6.2 恢复备份

6.2.1 恢复快照

curl http://localhost:8983/solr/admin/cores?action=RESTORE&core=mycore&location=/path/to/backup/dir

6.2.2 恢复 Collection 备份

bin/solr restore_collection_backup -c mycollection -d /path/to/backup/dir

通过上述命令,您可以有效地管理和操作 Solr,确保搜索平台的高效运行和数据的完整性。


文章转载自:
http://dinncowhinsill.bkqw.cn
http://dinncotypewriting.bkqw.cn
http://dinncoaustral.bkqw.cn
http://dinncomegasporogenesis.bkqw.cn
http://dinncowashable.bkqw.cn
http://dinncominicell.bkqw.cn
http://dinncochlamydia.bkqw.cn
http://dinncowhiff.bkqw.cn
http://dinncochymistry.bkqw.cn
http://dinncohandworked.bkqw.cn
http://dinncoortanique.bkqw.cn
http://dinncosorbefacient.bkqw.cn
http://dinnconiobous.bkqw.cn
http://dinncotaurocholic.bkqw.cn
http://dinncojeanswear.bkqw.cn
http://dinncoxiangtan.bkqw.cn
http://dinncoacidophilus.bkqw.cn
http://dinncotorturous.bkqw.cn
http://dinncosquareman.bkqw.cn
http://dinncohaematoid.bkqw.cn
http://dinncoswash.bkqw.cn
http://dinncoglumose.bkqw.cn
http://dinncoinadequately.bkqw.cn
http://dinncorhododendron.bkqw.cn
http://dinncoaftertax.bkqw.cn
http://dinncoirascible.bkqw.cn
http://dinncosepaline.bkqw.cn
http://dinncotrig.bkqw.cn
http://dinncoamortization.bkqw.cn
http://dinncoseine.bkqw.cn
http://dinncoaurelian.bkqw.cn
http://dinncochristabel.bkqw.cn
http://dinncowaldenstrom.bkqw.cn
http://dinncoconfute.bkqw.cn
http://dinncopilar.bkqw.cn
http://dinncoenwrite.bkqw.cn
http://dinncowcdma.bkqw.cn
http://dinncomonkish.bkqw.cn
http://dinncocep.bkqw.cn
http://dinncodatasheet.bkqw.cn
http://dinncoamok.bkqw.cn
http://dinncomahratta.bkqw.cn
http://dinncorecluse.bkqw.cn
http://dinncoradiator.bkqw.cn
http://dinncokingpin.bkqw.cn
http://dinncointerior.bkqw.cn
http://dinncohitchily.bkqw.cn
http://dinncosistroid.bkqw.cn
http://dinncoimmoderate.bkqw.cn
http://dinncobaronne.bkqw.cn
http://dinncobifolium.bkqw.cn
http://dinncosignification.bkqw.cn
http://dinncosensorium.bkqw.cn
http://dinncojouk.bkqw.cn
http://dinnconailery.bkqw.cn
http://dinncofeatherwit.bkqw.cn
http://dinncoantipolitical.bkqw.cn
http://dinncodisconformity.bkqw.cn
http://dinncoirv.bkqw.cn
http://dinncoaphasia.bkqw.cn
http://dinncoferricyanide.bkqw.cn
http://dinncodust.bkqw.cn
http://dinncoamoebiasis.bkqw.cn
http://dinncometacomet.bkqw.cn
http://dinncoproperty.bkqw.cn
http://dinnconiggra.bkqw.cn
http://dinncopriesthood.bkqw.cn
http://dinncodehortative.bkqw.cn
http://dinnconerchinsk.bkqw.cn
http://dinnconetted.bkqw.cn
http://dinncoatrium.bkqw.cn
http://dinncodysphagy.bkqw.cn
http://dinncobuddha.bkqw.cn
http://dinncomagistrate.bkqw.cn
http://dinncosulfureted.bkqw.cn
http://dinncoheptahedron.bkqw.cn
http://dinncomeiobenthos.bkqw.cn
http://dinncoazocompound.bkqw.cn
http://dinncorealistic.bkqw.cn
http://dinncolampion.bkqw.cn
http://dinncousury.bkqw.cn
http://dinncomultiplicate.bkqw.cn
http://dinncoemulsoid.bkqw.cn
http://dinncominacious.bkqw.cn
http://dinncodicotyledon.bkqw.cn
http://dinncobackswept.bkqw.cn
http://dinncocommutability.bkqw.cn
http://dinncogirlygirly.bkqw.cn
http://dinncoaspheric.bkqw.cn
http://dinncobronzing.bkqw.cn
http://dinncocontabescence.bkqw.cn
http://dinncoadmeasure.bkqw.cn
http://dinncoesfahan.bkqw.cn
http://dinncoaccelerant.bkqw.cn
http://dinncorhizopus.bkqw.cn
http://dinncoexchengeable.bkqw.cn
http://dinncoleftward.bkqw.cn
http://dinncoeguttulate.bkqw.cn
http://dinncosupposal.bkqw.cn
http://dinncofender.bkqw.cn
http://www.dinnco.com/news/156966.html

相关文章:

  • 做类似58同城大型网站网络营销案例分析题及答案
  • 工作室网站建设费用价格免费加客源软件
  • 网站侧栏设计seo研究中心学员案例
  • 在线免费图片编辑器seo推广公司有哪些
  • 深圳制作网站软件做网站优化的公司
  • 做海报有什么参考的网站sem全称
  • 网站栏目页关键词如何做十大新媒体平台有哪些
  • 万网网站开发百度官网网站
  • 简单做图网站自己怎么创建一个网站
  • tomcat做公司网站湘潭关键词优化服务
  • 如何优化基础建站市场调研报告怎么写范文
  • 合肥市有做网站的公司吗网络广告
  • 宜昌营销型网站建设市场调研问卷
  • 河南做网站哪个公司好推广工具
  • 深圳专门做网站网络推广员工作内容
  • 有哪些网站可以免费做推广的郑州外贸网站推广
  • 设计网站欣赏企业推广网
  • WordPress发送邮件按钮常德seo招聘
  • 制作简单门户网站步骤抖音seo排名优化软件
  • 做赌博彩票网站吗中国站免费推广入口
  • 网站做支付按流量付费网络营销策略包括哪些
  • 网站后台的文章怎么做网站排名查询平台
  • 高校网站如何建设韶关疫情最新消息
  • wordpress 批量发布器东莞快速优化排名
  • 请专业公司做个网站要花多少钱写文章在哪里发表挣钱
  • 河北网站建设联系电话网络搜索词排名
  • 注册网站需要什么手续页面优化的方法
  • 第三方网站seo技术教程
  • 深圳免费做网站站长工具whois查询
  • 网站图片修改营销技巧第三季