How do I speed up my list rendering?
Why is my server response time so high in local environment? 11.88s? I am using laragon.
Could I list my record faster? Is it so slow because of images?
7 Replies
Shouldn't be because of the images. The query gets them in 8ms and it basically just gives you the path. How does it perform on other pages?
faster because I have pagination and per page 12 but here I turned off pagination and I'm loading all records
I think the problem is in server response time and I don't know why it's so high
one more thing, my views show 12767 templates were rendered when I turn on views in debugbar
I disabled xdebug and application loaing 2x faster
What else can I do?
Don’t load all records. And if you’re paginating optimize your relationships.
With 12,000 views though. The hit is going to be in the browser with alpine and livewire doing dom diffing there’s going to be performance problems, but that’s not filament specific, that’s browser and js limitations.
I really need such a table for this one model because of the client's request.
Can I somehow make a custom solution for this one model to gain speed?
how much faster if not showing image? cant really help much without seeing your code
and again, it's not going to improve much as your model records going to grow anyways