本文介绍了在marklogic中搜索二进制文件的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
除了
使用xdmp:document-filter()函数将其转换为X HTML格式并对其进行搜索?
converting it into X HTML format using xdmp:document-filter() function and searching on it ?
推荐答案
基本上没有.您必须从二进制格式中提取可读文本,以允许MarkLogic对其进行索引.您可以使用xdmp:document-filter()
或xdmp:pdf-convert()
和xdmp:word-convert()
之类的函数来提取文本,但是无法直接为二进制节点建立索引.
Basically no. You have to pull out the readable text out of the binary format to allow MarkLogic to index it. You can extract that text with xdmp:document-filter()
or with functions like xdmp:pdf-convert()
and xdmp:word-convert()
, but there is no way to index binary nodes directly.
HTH!
这篇关于在marklogic中搜索二进制文件的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!