RoR 中的文档搜索

发布于 2024-12-08 11:49:12 字数 108 浏览 0 评论 0原文

事情是这样的:我有一个 RoR 应用程序,其中包含一堆数据库项目(通过 Sunspot 进行索引),其中一些带有文件附件(通常是 PDF 和纯文本文件)。在全文搜索中包含这些文档内容的最简单方法是什么?

Here's the deal: I have a RoR application with bunch of database items (indexed via Sunspot), some of them with file attachments (typically PDFs and plaintext files). What's the easiest way to include content of those documents in fulltext search?

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

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

发布评论

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

评论(1

夏の忆 2024-12-15 11:49:12

使用 PDF 阅读器 gem,例如 pdf-reader,并在 Sunspot 中对其进行索引。

class Item < ActiveRecord::Base
  searchable if: proc{ |topic| topic.try(:price).try(:>,0) } do
    text    :attachment_text  # index result returned from attachment() method
  end

  # getting text out of attachment
  def attachment_text
    # pseudo code of determining attachment format
    case attachment.extension
    when :pdf
      # Use pdf-reader gem get all the text from all pages
    when :txt
      return open(attachment).read()
    end
  end
end

Use a PDF reader gem like pdf-reader, and index it in Sunspot.

class Item < ActiveRecord::Base
  searchable if: proc{ |topic| topic.try(:price).try(:>,0) } do
    text    :attachment_text  # index result returned from attachment() method
  end

  # getting text out of attachment
  def attachment_text
    # pseudo code of determining attachment format
    case attachment.extension
    when :pdf
      # Use pdf-reader gem get all the text from all pages
    when :txt
      return open(attachment).read()
    end
  end
end
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文