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
The edismax query described here https://solarium.readthedocs.io/en/stable/queries/select-query/building-a-select-query/components/edismax-component/ is not working directly with the bundle. I have to use getClient() to communicate directly with solarium ex:
$query = $solr->getClient()->createSelect(); $edismax = $query->getEDisMax(); $edismax->setQueryFields("title^10.0 desc^9.0 "); $query->setQuery($globalQuery); $resultset = $solr->getClient()->select($query);
using $solr->query($query); strips away all the edismax values.
$solr->query($query);
The text was updated successfully, but these errors were encountered:
No branches or pull requests
The edismax query described here https://solarium.readthedocs.io/en/stable/queries/select-query/building-a-select-query/components/edismax-component/ is not working directly with the bundle. I have to use getClient() to communicate directly with solarium ex:
using
$solr->query($query);
strips away all the edismax values.The text was updated successfully, but these errors were encountered: