Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Performance Issue with updatedSearch Method Causing Timeouts #608

Open
andywade84 opened this issue Nov 7, 2023 · 0 comments
Open

Performance Issue with updatedSearch Method Causing Timeouts #608

andywade84 opened this issue Nov 7, 2023 · 0 comments

Comments

@andywade84
Copy link

The updatedSearch method in the Livewire Datatables component is fetching all records from the database when processing searches. This has the potential to cause significant performance problems, including database server timeouts and HTTP 504 errors, when handling large datasets.

Steps to Reproduce:

Use a datatable with a large number of records.
Utilize the search functionality.
Experience performance issues and potential timeouts or 504 errors.

Expected Behavior:
The search functionality should efficiently filter results without retrieving all records from the database, avoiding timeouts and ensuring a smooth user experience.

Actual Behavior:
The method updatedSearch currently retrieves all records, causing inefficiencies and server errors.

Possible Solution:
The updatedSearch method could be improved by using a paginated or scoped query to fetch only the necessary records.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant