I am working in a CF 9 environment with Solr collections. I have 7 of them that I'm working with, all are strictly PDFs. Using CFSEARCH
, I'm not getting all of the documents that should be appearing in the results.
To give a specific example, the client has ten PDFs that contain the string 1386
somewhere in the body of the documents. But when using the search form and entering 1386
, only 4 of them appear. The client is concerned that not all PDFs with 1386
are being displayed in search results.
I have been following (with great interest) David Faber's posts espousing the CFHTTP
method of querying a Solr collection, but I'm running into snags trying to implement it.
One of the issues is that when using CFSEARCH
, I'm using all four CUSTOM
fields, and I'm also getting CONTEXT
which will highlight the keyword. In the CFHTTP
method, I'm not getting CONTEXT
with highlighted keywords.
Also, I'm trying to deserialize JSON and convert that to a query object. But I keep getting the common error message about
attempting to reference a scalar variable array as a structure with members
Advice/suggestions greatly appreciated.