On 4/24/2018 10:26 AM, Lee Carroll wrote: > Does the solr cell contrib give access to the files raw content along with > the extracted metadata?\
That's not usually the kind of information you want to have in a Solr index. Most of the time, there will be an entry in the Solr index that tells the system making queries how to locate the actual data -- a filename, a URL, a database lookup key, etc. I have no idea whether solr-cell can put the info in the index. My best guess would be that it can't, since putting the entire binary content into the index isn't recommended. We don't recommend using solr-cell for production indexing. If you follow recommendations and write your own indexing program using Tika, then you can do pretty much anything you want, including writing the full content into the index. Thanks, Shawn