104 questions
- Bountied 0
- Unanswered
- Frequent
- Score
- Trending
- Week
- Month
- Unanswered (my tags)
-1
votes
0
answers
37
views
Meilisearch fails to find alphanumeric SKU unless combined with another term in quotes
I'm trying to configure Meilisearch for a very strict, 100% exact match search for product SKUs and brand names from a collection of text files. My goal is to completely disable all of Meilisearch's &...
0
votes
0
answers
50
views
Set searchableAttributes without API/cURL – via code?
I have a corporate/institutional website with a blog, and we use Strapi as the CMS for the blog.
For indexed search on the website, we use the Meilisearch plugin for Strapi, along with InstantSearch (...
0
votes
0
answers
98
views
How to increase the searching speed - Laravel, Meilisearch/Scout, Powergrid
I'm using Laravel Scout with Meilisearch inside a PowerGrid Livewire component to implement full-text search on a Product model. The search function works as expected, but it's noticeably slow taking ...
1
vote
1
answer
53
views
Relational Attributes Missing After php artisan scout:import
Laravel Scout Meilisearch - Role, Creator, and Updater Attributes Missing After Import
Environment:
Laravel: 12.0
Scout: 10.13
Scout Driver: Meilisearch
I'm using spatie/laravel-permissions for role ...
0
votes
1
answer
263
views
How to fix Your database version is incompatible on local dev server?
I think after upgrading my local ubuntu 22.04 I got error running meilisearch :
$ ~/Downloads/meilisearch --master-key="103c5134-1195-4057-a6bc-0c265580b0f8"
2024年12月25日T15:15:51.059452Z ...
0
votes
0
answers
47
views
Issue with Laravel, Meilisearch, Scout, SQLSRV, and RHEL 7
In my testing environment (Ubuntu 22.04 LTS and MySQL), everything works as expected, but it doesn't work on RHEL. When I insert/update a record for any model using Searchable, it doesn’t appear in my ...
0
votes
0
answers
36
views
Search Request Random Latency
I was successfully using Meilisearch 1.2.0 to 1.3.3 in a Laravel 9 dev project on Windows 10. About a week ago I had to reinstall Windows and WAMP. After the reinstallation I noticed it now took more ...
1
vote
0
answers
35
views
prevent the page from refreshing when clicking on the link, you can use
I'm using the @algolia/autocomplete-js library in a Nuxt.js project to display search results for products and users. The problem I'm facing is that when I click on a search result link, the page ...
1
vote
0
answers
457
views
TypeError: 'async for' requires an object with __aiter__ method, got coroutine
Has anyone encountered the same error? Is there any solution?
error log
TypeError: 'async for' requires an object with __aiter__ method, got coroutine
the detial log
TypeError: 'async for' requires ...
0
votes
2
answers
631
views
How to customize scout/meilisearch search results?
I'm using Scout with meilisearch and I want the search results to include extra data like link url or thumb url. Till now in docs I've found (and used) how to define the indexed fields, the filterable ...
0
votes
1
answer
344
views
Laravel Scout + Meilisearch + Sail: Search method doesn't exist
I'm encountering an error while trying to search using Meilisearch:
"Method Laravel\Scout\Builder::search does not exist."
Here's the setup I'm using:
Laravel 11
Sail
Meilisearch
Scout
...
0
votes
0
answers
1k
views
How to filter on an array in meilisearch?
I'm using Meilisearch with Laravel Scout on Laravel 10.
In my index, I store an array of denied_categories as an array of integers which are ids of categories like this :
In my frontend I would like ...
1
vote
1
answer
604
views
Meilisearch. Tasks queue got frozen/stuck
Heyo.
Having a problem with indexing a pretty large amount of documents. It went ok for 95kk records but after that it just stopped accepting or processing new tasks.
All of them were just hanging ...
1
vote
0
answers
85
views
MeiliSearch multi-search route throwing 404 error
I have setup a docker + laravel (v10) + meilisearch (v1.7) setup
in Postman using an index search. Meilisearch manage to return some values
curl --location 'http://localhost:7700/indexes/d99f2662-...
1
vote
1
answer
233
views
Laravel Scout w/ Meilisearch and Redis queue import fails when queue=true
When I run
sail php artisan scout:import "App\Models\Persona"
with queue=false, everything works fine, and I've confirmed searches return results.
But when I turn on the queue and run the ...