15 Replies
When I search .
Right now when the query sql query is this :
how do i improve this ? can i join table ? or did i do something wrong .

Right now it take around 25second . just for search ..

So firstly have you got the following indexes?
yes i have.
You can customise the query in the searchable method if you want to improve that side of it, good examples here
https://laracasts.com/discuss/channels/filament/customize-the-search-query-in-the-textcolumn-searchable
you can also modify the table query to load in the relationships too.
I will try ..
But can i ? or i should not put searchable() on every columm ? @toeknee .
I use searchable() on every column absolutely fine. So I am surprised it takes so long tbj.
If you don't place it on the columns you can't search the way you want .
Thank you . I will try first 🙂
Depending on your data, you will run into performance issues. We have a table with around 1.5M records, and searching is a pain since LIKE queries cannot use indexes. Look into fulltext indexes etc and/or generated columns that might help you.
Honestly, at this point this is beyond the scope of filament and just a genral optimisation problem. Have fun!
In theory if it is that big you could build a custom view table which is basically a highly opitmised, pre-defined table for a specific model that just reads data.
I've done that for a transactions table as we had to merge two datasets and it streamlines eloquent
Did you mean to use sql views?
Yeah
We can connect eloquent with sql views ?
Of course just as normal
However, it's only for reading