Questions tagged [meilisearch]

Questions related to Meilisearch search engine by meilisearch.com

Meilisearch is an opensource REST based, self-hostable search engine software.

From the documentation

MeiliSearch is a RESTful search API. It aims to be a ready-to-go solution for everyone who wants a fast and relevant search experience for their end-users.

Meilisearch is built using .

Official clients are available , , , , , , and other languages.

Few framework related packages are available too.

Links

91 questions
6
votes
4 answers

Laravel Scout (meilisearch) with Docker

I am trying to use Laravel Scout with docker I followed along with the docs Laravel Scout Docs I made all required steps for installation and everything is up and running as expected. but whenever I try to search data I received this error cURL…
Judge Jules
  • 173
  • 10
3
votes
3 answers

Laravel Scout (Meilisearch) - Says imported data, but doesn't

I've installed and configured meilisearch + Laravel Scout package. My Model: class Post extends Model { use Searchable; } When I run php artisan scout:import 'App\Models\Post' it returns: Imported [App\Models\Post] models up to ID: 5 All…
X 47 48 - IR
  • 1,250
  • 1
  • 15
  • 28
3
votes
0 answers

Laravel scout (meilisearch-driver) search on many to many relationship

I have a many-to-many relationship and I would to perform a search on that relationship with laravel scout (meilisearch-driver). My models: Beneficiary.php
3
votes
1 answer

Laravel Scout - flush command not working

I'm using Scout with Meilisearch. I want to flush one of my models. php artisan scout:flush "App\Comment" returns All [App\Comment] records have been flushed. However, when checking out meilisearch, the records for this table are still there. I…
Felix
  • 2,532
  • 5
  • 37
  • 75
2
votes
1 answer

Does Meilisearch have a limit for how many results it can give when searching?

I have a model, let's call it Entry. In a view, I have a paginated table (35 per page) with a search bar that lists every entry. When the view loads, meilisearch is called to retrieve the first page of results. This is done with a search query using…
IGP
  • 14,160
  • 4
  • 26
  • 43
2
votes
1 answer

Installed via Laravel Sail and available on the port Meilisearch doesn't add indexes for models; date.ms file seems to be missing

I added Meilisearch to the project, now its interface is available in the browser at :7700 and I see the following in my browser: I installed Meilisearch via Laravel Sail utility, below is the content of my docker-compose.yml file: And the…
2
votes
0 answers

React Native - {"name":"Invariant Violation","framesToPop":1}

I'm trying to implement meilisearch api in React native and it is working fine with my simulator and after I publish the app some of the users cannot see the data returning from meilisearch, the error is {"name":"Invariant…
Dileepa Chandima
  • 389
  • 4
  • 14
2
votes
1 answer

Where does Laravel Scout store Meilisearch settings?

I don't mean filters, I mean settings: https://docs.meilisearch.com/reference/api/settings.html So let's say I wanted to change the default Meilisearch 'stopword' setting for a specific model (or even all…
Felix
  • 2,532
  • 5
  • 37
  • 75
2
votes
1 answer

MeiliSearch with Rust SDK search query with limit

I am trying to search for documents by a search value and also set a limit. The default limit set by the SDK is 20 and I would like to increase it a little bit. With a standard curl this is easy but I struggle to implement the same functionality…
hansTheFranz
  • 2,511
  • 4
  • 19
  • 35
1
vote
2 answers

CanCanCan, Pagy, and MeiliSearch, How to combine the 3 gems?

I'm working on a project that has Cue model that could be accessed and searched by multiple roles like guest and admin. The authorization happens using CanCanCan gem based on some logic written in the Ability class. While the search happens using…
AliOsm
  • 541
  • 2
  • 6
  • 20
1
vote
1 answer

Meilisearch version [Error: Your database version (1.0.2) is incompatible with your current engine version (1.1.0).]

When I start the run docker and meilisearch container doesn't run with this error : 2023-04-10 17:23:44 Error: Your database version (1.0.2) is incompatible with your current engine version (1.1.0). 2023-04-10 17:23:44 To migrate data between…
Eren Tın
  • 13
  • 5
1
vote
0 answers

Laravel Scout dynamically limit which keys are searched/returned

I'm setting up Laravel Scout for searching (experimenting with Meilisearch as the driver), however, I want to limit what fields are used for search (and ideally which fields are returned) based on a users permissions. As an example, a User model…
Kieran
  • 752
  • 1
  • 10
  • 24
1
vote
1 answer

import _geo into Meilisearch from Laravel Model

ok so lets start off with code return [ 'name' => $this->name, 'user_display_name' => $this->user_display_name, 'user_city' => $this->user_city, 'user_region' => $this->user_region, …
ArcticMediaRyan
  • 687
  • 8
  • 32
1
vote
0 answers

Search filter doesn't work correctly after adding new data with Laravel Scout on Meilisearch

I have Classified model public function searchableAs() { return 'classifieds_index'; } public function toSearchableArray() { return [ 'title' => $this->title, 'description' => strip_tags($this->content), …
viiskis
  • 165
  • 12
1
vote
1 answer

Where is the output of debug!() calls in rust

Trying to understand an open source project and I have seen the following code in many places debug!("called with params: {:?}", body); // or some parameter instead of bo when I run cargo run I do not see any of these outputs in the console. only…
Shobi
  • 10,374
  • 6
  • 46
  • 82
1
2 3 4 5 6 7