Hi everyone..
I'm indexing docs into Solr using the update request handler, by POSTing
data to the REST endpoint (not SolrJ, not DIH).
My indexer should return an indication, whether the document existed in the
collection before or not, based in its ID.
The obvious solution is the perform a query
codecs/bloom/BloomFilteringPostingsFormat.html
> and this piece of text:
> "
> A PostingsFormat useful for low doc-frequency fields such as primary
> keys. Bloom filters are maintained in a ".blm" file which offers
> "fast-fail" for reads in segments known to have no record
Hi,
I was looking at
http://lucene.apache.org/core/4_2_1/codecs/org/apache/lucene/codecs/bloom/BloomFilteringPostingsFormat.html
and this piece of text:
"
A PostingsFormat useful for low doc-frequency fields such as primary
keys. Bloom filters are maintained in a ".blm" file whi