Sphinx:初始化实时索引

发布于 2024-09-30 05:20:16 字数 79 浏览 4 评论 0原文

我想将 sphinx 索引之一迁移到实时。然而,rt索引不接受源并且它的初始化有点混乱。有没有一种方法可以将现有索引实时迁移而无需编写大量脚本?

I would like to migrate one of the sphinx index into real time. However, rt index doesn't take a source and its initialization is kinda messy. Is there a way to migrate existing index into real time without a lot of scripting?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

·深蓝 2024-10-07 05:20:16

我很高兴我的演示文稿有帮助,但现在 Sphinx 有新命令可以帮助从原始索引迁移到实时索引: 附加索引

这很简单:

ATTACH INDEX diskindex TO RTINDEX rtindex

顺便说一句,我写了一篇博客文章,描述 附加索引命令的详细信息。

I am glad that my presentation was helpful, but now Sphinx has new command which help migrate from original to real-time indexes: attach index

It is simple as:

ATTACH INDEX diskindex TO RTINDEX rtindex

BTW, I have wrote a blog post which describe attach index command in details.

傲鸠 2024-10-07 05:20:16

目前不存在官方途径。仅定制解决方案。在这个有趣的文档 (PDF)有一种提到的方式:

mysqldump -uroot blog users > users_dump.sql
mysql -P9306 < users_dump.sql

问候。

At the moment no official way exists. Only custom solutions. In this interesting document (PDF) there is one of the ways mentioned:

mysqldump -uroot blog users > users_dump.sql
mysql -P9306 < users_dump.sql

Regards.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文