搜索预览

    无论您是使用 Meilisearch 云 还是自行托管 Meilisearch,都可以使用搜索预览进行快速手动测试。

    将文档添加到 Meilisearch 实例后,您可以立即开始使用 Meilisearch 的搜索预览搜索数据集。当您想要检查文档是否已正确索引以及 Meilisearch 是否按预期工作时,这将非常有用。

    如果您的 Meilisearch 实例没有任何索引,您应该会看到此屏幕。

    Meilisearch search preview instructing the user to set an API key and configure an index

    要通过浏览器访问搜索预览,请导航到命令行参数 --http-addr 中指定的地址和端口。如果您在启动实例时未配置 --http-addrMeilisearch 搜索预览的默认地址为 localhost:7700

    出于安全原因,搜索预览仅在 开发模式 下可用。您可以通过将 MEILI_ENV 环境变量或 --env CLI 选项设置为 production 来禁用它。请注意,您必须在生产模式下设置 主密钥

    示例

    您可以将包含许多热门电影的数据集添加到实例中

    curl \
      -X POST 'https://127.0.0.1:7700/indexes/movies/documents'\
      -H 'Content-Type: application/json' \
      --data-binary @movies.json

    索引完成后,您可以访问 https://127.0.0.1:7700 并通过搜索“The Truman Show”确认一切正常。

    Animated gif in which a user types "trumen show" and sees "The Truman Show" as the top result