Rakesh .p
Rakesh .p

Reputation: 79

searching content in binary files using MarkLogic database

Is it possible to search binary files content, like PDF, using
MarkLogic with Node.js? How do you retrieve the PDF docs stored in database using MarkLogic with Node.js?

Upvotes: 0

Views: 245

Answers (1)

Tamas
Tamas

Reputation: 11214

it is not possible to search binary documents in the database - this stands true regardless whether you'd want to do this via Query Console or via any API.

As explained in this answer you can extract metadata for binary documents or convert binary documents into XML documents for example. Once you do that you can execute search against it and you can execute that search using Node.js as well of course.

Upvotes: 7

Related Questions