Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Indexing PDF files with Symfony using Lucene

I am a Symfony developer and my web server is Linux. I already use the sfLucene plugin.

What is the simplest way of indexing PDF files for search on a Linux PHP server?

  1. XPDF, installed like this
  2. Apache Tika via the SOLR sfLucene plugin branch
  3. A 3rd option?

Thanks!

like image 571
Jon Winstanley Avatar asked Feb 19 '10 12:02

Jon Winstanley


2 Answers

Coming from a Zend background, i generally recommend using Zend_Search_Lucene. The XPDF example is really straight forward and looks simple. XPDF is licenced as GPL - if that fits your need, go for #1!

ZF can easily be integrated within your Symfony projects, e.g. for a Twitter Call.

like image 92
Phil Rykoff Avatar answered Nov 08 '22 08:11

Phil Rykoff


There are many libraries for extracting text content from PDF. With any of these, you then need to create a lucene document with the content. The most useful ones will be those that already have lucene integration.

Apache PDFBox can create a lucene document directly from PDF file. It will include PDF metadata fields as well as text content.

like image 45
Lachlan Roche Avatar answered Nov 08 '22 09:11

Lachlan Roche