↧
Answer by Zoli for Laravel - Possible solutions for improving query read...
Try to use elasticsearch. It will speed up the read process.
View ArticleAnswer by Arun P for Laravel - Possible solutions for improving query read...
Try converting the query into a stored procedure. You can execute the stored procedure like this.. DB::select('exec stored_procedure("Param1", "param2",..)'); or DB::select('exec...
View ArticleLaravel - Possible solutions for improving query read performance for large...
I have a Laravel web app that's using a VueJS front-end and MySQL as the RDBMS. I currently have a table that is 23.8gb and contains 8m+ rows and it's growing every second. When querying this data,...
View Article