We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
New lucene function (#7155) that perform a more like this query:
SELECT FROM Song where search_more(['#25:2', '#25:3']) = true;
Or with a subquery:
SELECT from Song let $a=(SELECT @rid FROM Song WHERE author = 'Hunter') WHERE SEARCH_More( $a, { 'minTermFreq':1, 'minDocFreq':1} ) = true
MoreLikeThis configuration parameters should be passed as json:
SELECT from Song where SEARCH_More( [#25:2, #25:3] , {'fields': [ 'title' ], 'minTermFreq':1, 'minDocFreq':1, 'maxWordLen':5 }) = true
All the configuration parameters of MLT should be exposed.
The function will use the MoreLikeThis capability from Lucene itself: https://lucene.apache.org/core/6_5_1/queries/index.html
The text was updated successfully, but these errors were encountered:
[lucene] adds SEARCH_MORE function for more like this search
6212d1f
refs : #7408
works on more like this
0f931c1
refs #7408
improves retrieve of "this" documents directly from database
dbe4c1a
refs: #7408
add handle of wrong call document by document
bc350c3
robfrank
No branches or pull requests
New lucene function (#7155) that perform a more like this query:
Or with a subquery:
MoreLikeThis configuration parameters should be passed as json:
All the configuration parameters of MLT should be exposed.
The function will use the MoreLikeThis capability from Lucene itself: https://lucene.apache.org/core/6_5_1/queries/index.html
The text was updated successfully, but these errors were encountered: