-
Notifications
You must be signed in to change notification settings - Fork 2
New issue
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
Allow to set the limit of the keyword search #268
Comments
@D063520 let me know if I need to add Antoine to this repo as a collaborator |
yes please, he is aware of the issue though ... |
what's his Github username? |
@ate47 I invited you but you need to accept |
I need to work on it in qEndpoint, I don’t really need the access of the repository. It’ll be a version update |
I am not sure where the index config is? Inside the repo model you might have these triples to config the Lucene nodes: mdlc:luceneParam [
mdlc:paramKey "maxDocuments" ;
mdlc:paramValue "5000"^^mdlc:parsedString ;
] ; With the latest version of qendpoint, they should be removed and replaced by these 2 triples: mdlc:luceneMaxDocs 10000 ;
mdlc:luceneNumResults 5000 ; The 10000 will be the maximum amount the user can ask (you can use whatever you want) Then in the lucene query you want to set, you need to add the triple ?subj search:matches [
search:query "search terms...";
search:numDocs 200 ] . |
Will assign Antoine for this who is working on the database.
@madewild @Dgojsic for information
The text was updated successfully, but these errors were encountered: