Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to index pdf, ppt, xl files in lucene (java based or python or php any of these is fine)?

Also I want to know how to add meta data while indexing so that i can boost some parameters

like image 587
harsha Avatar asked Jan 23 '23 07:01

harsha


1 Answers

There are several frameworks for extracting text suitable for Lucene indexing from rich text files (pdf, ppt etc.)

  • One of them is Apache Tika, a sub-project of Lucene.
  • Apache POI is a more general document handling project inside Apache.
  • There are also some commercial alternatives.
like image 161
Yuval F Avatar answered Jan 24 '23 20:01

Yuval F