laravel-scout-typesense-driver icon indicating copy to clipboard operation
laravel-scout-typesense-driver copied to clipboard

Laravel Scout Driver for Typesense

Results 17 laravel-scout-typesense-driver issues
Sort by recently updated
recently updated
newest added

## Description Keys are repeated: q, query_by, filter_by, per_page, page, highlight_start_tag, highlight_end_tag, exhaustive_search in [TypesenseEngine::buildSearchParams on line 230](https://github.com/typesense/laravel-scout-typesense-driver/blob/70bf417f72eb89126f104a13737d9b342218dee1/src/Engines/TypesenseEngine.php#L237C2-L243C60) ```php private function buildSearchParams(Builder $builder, int $page, int|null $perPage): array { $params...

No idea if this is the right place to ask, but; This driver has been merged upstream to the Laravel Scout repository, however it seems the Laravel team has no...

## Change Summary Added support for the `artisan scout:delete-all-indexes` command ## PR Checklist - [x] I have read and signed the [Contributor License Agreement](https://forms.gle/PZyiY5N2GDQU8GsV9).

## Description When searching for a string that is relatively common throughout a collection of indexed data, the results can not be fetched or displayed because the search with the...

## Description Currently we cannot use the Model::search('query')->options([]) feature, since the typesense engine class does not merge the builder options with the initial options. For example the Laravel scout algolia...

## Description When using certain values for query string, "Parameter `q` is required" is thrown. More exactly, any value that returns true from empty(...) does not work. ## Steps to...

Getting this error while running a simple query. There is already a issue logged with this same. But its closed without any answer. That's why i'm creating this issue. If...

## Description It seems the TypesenseEngine doesn't correctly work with Scout's `->paginate`, particularly when results exceeed 250 hits, as the total in the pagination gets set to the default `perPage`...

## Description In Typesense version 0.25 it's possible to [define](https://typesense.org/docs/0.25.0/api/vector-search.html#creating-an-auto-embedding-field) an embedding field. But since this field is auto-generated and is not stored locally, any update to the model will...

## Description At present it doesn't seem possible to sort, or if it is it's not documented anywhere. ## Steps to reproduce Setup on a model in this example `Post`...