this insert is caused by
https://github.com/apache/lucene-solr/blob/trunk/solr/core/src/java/org/apache/solr/search/SolrIndexSearcher.java#L1505
off-top thought:
showItems are useless, because now it looks like
- item_name:foo:org.apache.solr.search.SortedIntDocSet@2e1fbd46
Shouldn't it b
Check if MLT (more like this) could fit your requirements.
https://wiki.apache.org/solr/MoreLikeThis
If your requirements are more specific I think your client program should
tokenize the target document then construct one or more queries like:
"token token2" OR "token2 token3" OR ...
I'm not sur
Inquiries for such a reverse query feature have come up before - the
standard response is:
1. No, Solr does not have such a feature at this time.
2. Check out Luwak.
3. Sounds like you want what Elasticsearch calls Percolator. See:
https://www.elastic.co/guide/en/elasticsearch/reference/current/se
OK, finally the light dawns. You're doing something akin to "alerts".
that is, store a bunch of queries, then when a new document comes
in find out if any of the queries would match the doc and send
out alerts to each user who has entered a query like that. Your
situation may not be doing exactly t
@Jack: After reading the documentation, I think perlocator is what I'm
after. The filtering possibility is extremely appealing as well. I'll have
a closer look and experiment a bit.
@Erik: Yes that's right, notification is not really needed in my case
though. It should be doable as you said…perloc
Hi,
I want to disable the admin interface in SOLR. I understand that
authentication is available in the solrcloud mode but until that happens I
want to disable the admin interface in my prod environment.
How can I do this?
Regards.
Sid.