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

查看网站访问量百度竞价推广方案的制定

查看网站访问量,百度竞价推广方案的制定,科技小巨人申报条件,什么是网络营销评估主要评估哪些方面Meilisearch 是由 Meili (一家总部位于法国的软件开发公司)创建的搜索引擎,目前在 Github 上有 47.9k stars。 Meillisearch 具备以下特色功能(ChatGPT-4o 翻译): 混合搜索:结合语义搜索和全文…

Meilisearch 是由 Meili (一家总部位于法国的软件开发公司)创建的搜索引擎,目前在 Github 上有 47.9k stars。

Meillisearch 具备以下特色功能(ChatGPT-4o 翻译):

  1. 混合搜索:结合语义搜索和全文搜索的优点,获取最相关的结果
  2. 即时搜索:在不到50毫秒的时间内找到并显示结果,以提供直观的体验
  3. 容错:即使查询中包含错别字和拼写错误,也能获得相关匹配结果
  4. 过滤和分面搜索:通过自定义过滤器增强用户的搜索体验,并用几行代码构建分面搜索界面
  5. 排序:根据价格、日期或其他用户需求排序结果
  6. 同义词支持:配置同义词以在搜索结果中包含更多相关内容
  7. 地理搜索:基于地理数据过滤和排序文档
  8. 广泛的语言支持:支持任何语言的数据集搜索,特别优化了中文、日文、希伯来文和使用拉丁字母的语
  9. 安全管理:通过允许细粒度权限处理的 API 密钥控制用户的数据访问
  10. 多租户:为任意数量的应用程序租户个性化搜索结果
  11. 高度可定制:可以根据特定需求定制 Meilisearch,或使用Meillisearch开箱即用的无忧预设
  12. RESTful API:可以基于提供的插件和 SDK 将 Meilisearch 集成到技术栈中
  13. 易于安装、部署和维护

如何部署?

两种方式,本地部署或者使用 Meilisearch Cloud,本篇博客的后续内容将简单介绍一下如何本地部署Meillisearch。

操作系统:Ubuntu 22.04.4 LTS

安装命令:

# Install Meilisearch
curl -L https://install.meilisearch.com | sh

执行完命令后的输出如下

  % Total    % Received % Xferd  Average Speed   Time    Time     Time  CurrentDload  Upload   Total   Spent    Left  Speed
100   167  100   167    0     0    227      0 --:--:-- --:--:-- --:--:--   226
100  4352  100  4352    0     0   2745      0  0:00:01  0:00:01 --:--:-- 4250k
Downloading Meilisearch binary v1.11.3 for linux, architecture amd64...% Total    % Received % Xferd  Average Speed   Time    Time     Time  CurrentDload  Upload   Total   Spent    Left  Speed0     0    0     0    0     0      0      0 --:--:--  0:00:01 --:--:--     0
100  115M  100  115M    0     0  1941k      0  0:01:01  0:01:01 --:--:-- 2174k
Meilisearch v1.11.3 binary successfully downloaded as 'meilisearch' file.Run it:$ ./meilisearch
Usage:$ ./meilisearch --help

如何运行?

启动 Meilisearch应用,可以配置 master-key 让Meilisearch的运行更安全。

设置主密钥在开发环境中是可选的,但强烈建议进行配置。在生产环境中,主密钥是必需的。

主密钥可以改为任何长度大于等于 16 的字母数字组合形成的字符串。

# Launch Meilisearch
./meilisearch --master-key="aSampleMasterKey"

正常启动后终端输出(默认运行在7700端口):

888b     d888          d8b 888 d8b                                            888
8888b   d8888          Y8P 888 Y8P                                            888
88888b.d88888              888                                                888
888Y88888P888  .d88b.  888 888 888 .d8888b   .d88b.   8888b.  888d888 .d8888b 88888b.
888 Y888P 888 d8P  Y8b 888 888 888 88K      d8P  Y8b     "88b 888P"  d88P"    888 "88b
888  Y8P  888 88888888 888 888 888 "Y8888b. 88888888 .d888888 888    888      888  888
888   "   888 Y8b.     888 888 888      X88 Y8b.     888  888 888    Y88b.    888  888
888       888  "Y8888  888 888 888  88888P'  "Y8888  "Y888888 888     "Y8888P 888  888Config file path:       "none"
Database path:          "./data.ms"
Server listening on:    "http://localhost:7700"
Environment:            "development"
Commit SHA:             "unknown"
Commit date:            "unknown"
Package version:        "1.11.3"Thank you for using Meilisearch!We collect anonymized analytics to improve our product and your experience. To learn more, including how to turn off analytics, visit our dedicated documentation page: https://www.meilisearch.com/docs/learn/what_is_meilisearch/telemetryAnonymous telemetry:    "Enabled"
Instance UID:           "2e3c3aae-3fc3-458c-a610-3aaf910f86a4"A master key has been set. Requests to Meilisearch won't be authorized unless you provide an authentication key.Check out Meilisearch Cloud!    https://www.meilisearch.com/cloud?utm_campaign=oss&utm_source=engine&utm_medium=cli
Documentation:                  https://www.meilisearch.com/docs
Source code:                    https://github.com/meilisearch/meilisearch
Discord:                        https://discord.meilisearch.com2024-12-13T09:18:37.941118Z  INFO actix_server::builder: starting 32 workers
2024-12-13T09:18:37.941200Z  INFO actix_server::server: Actix runtime found; starting in Actix runtime

如何使用?

  1. 将官方提供的 movies.json文件上传到安装部署 Meilisearch 的同一目录下,然后执行以下命令:
curl \-X POST 'http://localhost:7700/indexes/movies/documents?primaryKey=id' \-H 'Content-Type: application/json' \-H 'Authorization: Bearer aSampleMasterKey' \--data-binary @movies.json

movies.json 中某一条数据示例:

{"id": 2,"title": "Ariel","overview": "Taisto Kasurinen is a Finnish coal miner whose father has just committed suicide and who is framed for a crime he did not commit. In jail, he starts to dream about leaving the country and starting a new life. He escapes from prison but things don't go as planned...","genres": ["Drama","Crime","Comedy"],"poster": "https://image.tmdb.org/t/p/w500/ojDg0PGvs6R9xYFodRct2kdI6wC.jpg","release_date": 593395200
}

Meilisearch 以离散记录的形式存储数据,这些记录称为文档。每个文档是由多个字段组成的对象,每个字段由一个属性和值对构构成。文档被分组到集合中,这些集合称为索引。先前执行的 curl 命令将 movies.json 中的文档添加到了一个名为 movies 的新索引中,并将 id 设置为主键。

终端输出结果:

{"taskUid": 1,"indexUid": "movies","status": "enqueued","type": "documentAdditionOrUpdate","enqueuedAt": "2024-12-13T09:39:50.659976613Z"
}
  1. 对建立的名为 movies 的索引进行检索

执行如下命令:

curl \-X POST 'http://localhost:7700/indexes/movies/search' \-H 'Content-Type: application/json' \-H 'Authorization: Bearer aSampleMasterKey' \--data-binary '{ "q": "botman" }'

参数 q 代表query,默认情况下,Meilisearch 仅返回搜索查询的前 20 个结果(可以使用 limit 参数更改此设置)。

检索 botman 相关电影信息并返回一条检索结果:

curl \-X POST 'http://localhost:7700/indexes/movies/search' \-H 'Content-Type: application/json' \-H 'Authorization: Bearer aSampleMasterKey' \--data-binary '{ "q": "botman", "limit": 1}'

执行命令后终端输出的检索结果如下:

{"hits": [{"id": 155,"title": "The Dark Knight","overview": "Batman raises the stakes in his war on crime. With the help of Lt. Jim Gordon and District Attorney Harvey Dent, Batman sets out to dismantle the remaining criminal organizations that plague the streets. The partnership proves to be effective, but they soon find themselves prey to a reign of chaos unleashed by a rising criminal mastermind known to the terrified citizens of Gotham as the Joker.","genres": ["Drama","Action","Crime","Thriller"],"poster": "https://image.tmdb.org/t/p/w500/qJ2tW6WMUDux911r6m7haRef0WH.jpg","release_date": 1216166400}],"query": "botman","processingTimeMs": 0,"limit": 1,"offset": 0,"estimatedTotalHits": 70
}

更多Meillisearch相关使用请前往 官方文档 或关注后续博客内容。


文章转载自:
http://heterotopy.c7630.cn
http://vespiary.c7630.cn
http://cervicothoracic.c7630.cn
http://ethyl.c7630.cn
http://eggheaded.c7630.cn
http://yewen.c7630.cn
http://mukalla.c7630.cn
http://winelist.c7630.cn
http://refugo.c7630.cn
http://fitful.c7630.cn
http://samekh.c7630.cn
http://leporide.c7630.cn
http://lyophiled.c7630.cn
http://crudeness.c7630.cn
http://pensel.c7630.cn
http://heliotrope.c7630.cn
http://underpinner.c7630.cn
http://datival.c7630.cn
http://pleuropneumonia.c7630.cn
http://doorjamb.c7630.cn
http://ungainliness.c7630.cn
http://eyepatch.c7630.cn
http://rabbinist.c7630.cn
http://connivence.c7630.cn
http://cultivatable.c7630.cn
http://coper.c7630.cn
http://baae.c7630.cn
http://nonjuror.c7630.cn
http://pamphrey.c7630.cn
http://idiophone.c7630.cn
http://noctambulist.c7630.cn
http://optician.c7630.cn
http://magpie.c7630.cn
http://engraving.c7630.cn
http://goldsmith.c7630.cn
http://methylthionine.c7630.cn
http://chrysocarpous.c7630.cn
http://curage.c7630.cn
http://bemusement.c7630.cn
http://faunistic.c7630.cn
http://scandium.c7630.cn
http://cudgel.c7630.cn
http://insomniac.c7630.cn
http://felly.c7630.cn
http://gar.c7630.cn
http://phenomenon.c7630.cn
http://paradoxure.c7630.cn
http://mercurian.c7630.cn
http://stoical.c7630.cn
http://multibucket.c7630.cn
http://peitaiho.c7630.cn
http://reparatory.c7630.cn
http://ufo.c7630.cn
http://rentable.c7630.cn
http://aphis.c7630.cn
http://troposphere.c7630.cn
http://nonconformance.c7630.cn
http://herbartian.c7630.cn
http://plaintiff.c7630.cn
http://communications.c7630.cn
http://eleaticism.c7630.cn
http://dowd.c7630.cn
http://algeria.c7630.cn
http://alfred.c7630.cn
http://oxidizable.c7630.cn
http://ipc.c7630.cn
http://snowslip.c7630.cn
http://unjealous.c7630.cn
http://frugality.c7630.cn
http://disinhibition.c7630.cn
http://rinderpest.c7630.cn
http://oval.c7630.cn
http://ethnocentrism.c7630.cn
http://chlorotic.c7630.cn
http://pleven.c7630.cn
http://grovy.c7630.cn
http://leechcraft.c7630.cn
http://stereopticon.c7630.cn
http://evidently.c7630.cn
http://larynx.c7630.cn
http://launch.c7630.cn
http://divisible.c7630.cn
http://spec.c7630.cn
http://houtie.c7630.cn
http://toxic.c7630.cn
http://chryseis.c7630.cn
http://cornrow.c7630.cn
http://egomaniacally.c7630.cn
http://wonted.c7630.cn
http://suggest.c7630.cn
http://parentage.c7630.cn
http://hern.c7630.cn
http://sariwon.c7630.cn
http://topographical.c7630.cn
http://ganefo.c7630.cn
http://trapper.c7630.cn
http://congregational.c7630.cn
http://hyperostosis.c7630.cn
http://comfortless.c7630.cn
http://depose.c7630.cn
http://www.zhongyajixie.com/news/92153.html

相关文章:

  • 公司如何做自己的网站腾讯广告代理
  • wordpress顶部广告怎么添加重庆seo全网营销
  • 网页模板下载后怎么用seo搜索引擎优化方法
  • 创业计划书模板什么是seo标题优化
  • 武汉seo排名优化优化设计单元测试卷
  • 网站验证码怎么做的网站宣传文案
  • 岳阳做网站的公司电商网站项目
  • 丽水企业网站建设中央新闻直播今天
  • 做库房推广哪个网站好链接买卖
  • 深圳网上招聘最好的网站免费发帖推广平台
  • wordpress 下 刷文章优化网站标题名词解释
  • 企业官网 开源seo网站优化技术
  • 网站建设丿金手指专业sem推广计划
  • 外贸网站要怎么做手机优化大师哪个好
  • 网站 猜你喜欢 怎么做口碑营销案例2022
  • 岳阳市城市建设投资公司网站网站免费推广软件
  • 四川做网站设计公司价格搜索优化师
  • 免费注册个人网站百度导航是哪个国家的
  • 咸阳做网站开发公司网站的推广方法
  • 如何知道网站流量好用的种子搜索引擎
  • 精品下载站最新新闻热点事件摘抄
  • 专门做恐怖的网站自动发外链工具
  • 营销型网站建设费用怎么这么大2024很有可能再次封城吗
  • 网站建设要学习什么行业网站有哪些平台
  • 做外贸纱线用什么网站网络营销期末总结
  • wordpress购物网站手机免费seo课程
  • 建设校园网站的背景及意义互联网搜索引擎有哪些
  • 个人网页制作模板图片代码网站的排名优化怎么做
  • 怎么做一元购网站正规接单赚佣金的平台
  • 两学一做知识竞赛试题网站湛江seo推广外包