meilisearch v1.10.3 版本更新介绍
发布日期: 2024-10-10
版本号: v1.10.3
本次PR通过实验性命令行参数新增了两项搜索行为的配置功能:一是使用
--experimental-nb-searches-per-core
参数设置每个CPU核心可并行处理的搜索任务数量;二是通过--experimental-drop-search-after
参数定义搜索请求在未被处理时的自动丢弃超时时间(以秒为单位)。该功能由@irevoire在PR #5000中实现,对应版本更新为v1.10.2至v1.10.3。
更新内容 (中文)
搜索改进
该 PR 允许通过实验性 CLI 参数配置搜索引擎的两个行为:
- 通过
--experimental-nb-searches-per-core
CLI 参数配置 Meilisearch 每个核心可并发处理的搜索数量 - 通过
--experimental-drop-search-after
CLI 参数配置搜索请求在多少秒后会被判定为失效并直接丢弃
由 @irevoire 在 https://github.com/meilisearch/meilisearch/pull/5000 完成
完整更新日志: https://github.com/meilisearch/meilisearch/compare/v1.10.2…v1.10.3
更新内容 (原始)
Search improvements
This PR lets you configure two behaviors of the engine through experimental cli flags:
- The number of searches Meilisearch can process concurrently per core with the
--experimental-nb-searches-per-core
cli flag - After how many seconds Meilisearch can consider a search as irrelevant and drop it straight away without processing it with the
--experimental-drop-search-after
cli flag
Done by @irevoire in https://github.com/meilisearch/meilisearch/pull/5000
Full Changelog: https://github.com/meilisearch/meilisearch/compare/v1.10.2...v1.10.3