Re: SpanMultiTermQueryWrapper default rewrite method and it's effect on performance

2021-10-12 Thread David Smiley
I wouldn't use boolean rewrite. But yeah, the default rewrite can be *very* slow but I don't think crashing. There's something in Lucene's sandbox "PhraseWildcardQuery" that is superior but no query parser yet uses it. ~ David Smiley Apache Lucene/Solr Search Developer http://www.linkedin.com/in

SpanMultiTermQueryWrapper default rewrite method and it's effect on performance

2021-09-12 Thread yael.mushin...@exlibrisgroup.com.INVALID
Hello, I’m implementing my own query parser plugin and trying to support “phrase wildcard query”. Meaning that have a field that is tokenized with StandardTokenizer (break on space etc.) and want to allow searching for: “foo ba*” (as phrase). I think that SpanMultiTermQueryWrapper can do this fo