I\'m trying to index a pdf document with elasticsearch/NEST.
The file is indexed but search results returns with 0 hits.
I need the search result to return o
I am working on the same so now i am trying this http://www.elasticsearch.cn/tutorials/2011/07/18/attachment-type-in-action.html
This article explains issue
pay attension that you should do correct mapping
"title" : { "store" : "yes" },
"file" : { "term_vector":"with_positions_offsets", "store":"yes" }
I will try to figure out how to do that with NEST api and update this post