Re: Solr Cell Question

2013-09-09 Thread Jamie Johnson
Thanks Erick, This is how I was doing it but when I saw the Solr Cell stuff I figured I'd give it a go. What I ended up doing is the following ModifiableSolrParams params = indexer.index(artifact); params.add("fmap.content", "my_custom_field"); params.add("extractFormat", "text"); ContentS

Re: Solr Cell Question

2013-09-06 Thread Erick Erickson
It's always frustrating when someone replies with "Why not do it a completely different way?". But I will anyway :). There's no requirement at all that you send things to Solr to make Solr Cel (aka Tika) do it's tricks. Since you're already in SolrJ anyway, why not just parse on the client? This