Who has experience with 1 million+++ rows using Filament?
Who has experience with 1 million+++ rows using Filament?
Is there any concern to use Filament for that ?
2 Replies
None, unless you intend to display all 1M at once π
Can laravel handle 1M? Can Livewire handle 1M? If both answers are yes, then so does filament.
Best practices applied though.
+5 million
- dont allow "all" per page
- avoid row actions when possible
- no bulk actions with "select all"
- ofc optimize db as much as you can and add indexes for filters
- use "apply btn" for filters
- cache what possible (view,route,config,,,etc)