在 Solr 3.3.0 中搜索图像

发布于 12-03 08:42 字数 1178 浏览 0 评论 0原文

我正在使用 Solr 3.3.0 版本,我需要索引和搜索图像。我可以对图像文件建立索引,但无法将它们检索为搜索结果。 你们谁能帮我解决这个问题吗?

我的 data-config.xml 是:

<dataConfig>
    <dataSource type="BinFileDataSource" name="bin"/>
    <document>
        <entity name="f" processor="FileListEntityProcessor" recursive="true" 
rootEntity="false" 
 dataSource="null"  baseDir="C:/Files" 
fileName=".*\.(DOC)|(PDF)|(XML)|(xml)|(JPEG)|(jpg)|(ZIP)|(zip)|(pdf)|(doc)" onError="skip">
            <entity name="tika-test" processor="TikaEntityProcessor" 
url="${f.fileAbsolutePath}" format="text" dataSource="bin" onError="skip"> 
                <field column="Author" name="author" meta="true"/> 
                <field column="title" name="title" meta="true"/> 
                <field column="text" name="text"/> 
                <field column="id" name="id"/>
                <field column="Keywords" name="keywords" meta="true"/> 
</entity> 
 <field column="file" name="fileName"/>
 <field column="fileAbsolutePath" name="links"/>
        </entity>
    </document>
</dataConfig>

这适用于图像以外的类型,我无法在搜索结果中获取图像

I am working with Solr 3.3.0 version and I need to index and search Images. I m able to index the image files but it fails to retrieve them as search results.
Can anyone of you help me out with this.

My data-config.xml is :

<dataConfig>
    <dataSource type="BinFileDataSource" name="bin"/>
    <document>
        <entity name="f" processor="FileListEntityProcessor" recursive="true" 
rootEntity="false" 
 dataSource="null"  baseDir="C:/Files" 
fileName=".*\.(DOC)|(PDF)|(XML)|(xml)|(JPEG)|(jpg)|(ZIP)|(zip)|(pdf)|(doc)" onError="skip">
            <entity name="tika-test" processor="TikaEntityProcessor" 
url="${f.fileAbsolutePath}" format="text" dataSource="bin" onError="skip"> 
                <field column="Author" name="author" meta="true"/> 
                <field column="title" name="title" meta="true"/> 
                <field column="text" name="text"/> 
                <field column="id" name="id"/>
                <field column="Keywords" name="keywords" meta="true"/> 
</entity> 
 <field column="file" name="fileName"/>
 <field column="fileAbsolutePath" name="links"/>
        </entity>
    </document>
</dataConfig>

This works fine for types other than images, I am not able to get images in search result

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

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

发布评论

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

评论(1

眼睛会笑2024-12-10 08:42:37

Ans)您必须在索引后使用 URL 中的查询在 solr 管理页面中进行搜索。
当您对图像进行索引时,它将显示在 solr admin 的概述选项卡中。
假设它没有在 solr 网页**e 中显示文档和时间,图像没有被索引,但我仍然在搜索相同的......

Ans) you have to search in solr admin page using the query in URL after indexed..
when ever you images are indexed it will display in Overview tab of solr admin ..
suppose it is not displaying the documents and time in solr web pag**e the image is not indexed still iam searching the same .....

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