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
SimilarLikeCondition
Add functionality to get similar documents by a given document id:
The text was updated successfully, but these errors were encountered:
For Solr, see https://solr.apache.org/guide/solr/latest/query-guide/morelikethis.html (should be similar to Elasticsearch)
Sorry, something went wrong.
@burki thank you for your help. Added it to the description. If you know others supporting it let me know.
RediSearch might support vector queries similar to Typesense, https://redis.io/blog/rediscover-redis-for-vector-similarity-search/ though I never used RedisSearch myself.
Algolia has https://www.algolia.com/doc/api-reference/api-parameters/similarQuery/ It looks like you have to extract fitting terms for building up similarQuery from a matching result by yourself:
$results = $index->search('', [ 'similarQuery' => 'Comedy Drama Crime McDormand Macy Buscemi Stormare Presnell Coen', 'filters' => 'year:1991 TO 2001' ]);
No branches or pull requests
Add functionality to get similar documents by a given document id:
The text was updated successfully, but these errors were encountered: