You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
One of our customers reported a performance issue related to berlindb especially for sites with large tables. This is related to SHOW TABLES... query in.
The proposed solution
Changed the query to below, we could see improved performance when we do this. we've forked the repo but before creating a PR we thought opening a ticket here to know if there are other things we aren't considering with the solution.
SELECT table_name FROM information_schema.tables WHERE table_name = '%s' LIMIT 1
The text was updated successfully, but these errors were encountered:
@JJJ can we please do a release of berlindb/core with all of those merged changes? the last release date was from 2 years or more :D and we use composer to update ur package.
Thanks Boss.
One of our customers reported a performance issue related to berlindb especially for sites with large tables. This is related to
SHOW TABLES...
query in.core/src/Database/Table.php
Line 351 in 9c4d1fe
The proposed solution
Changed the query to below, we could see improved performance when we do this. we've forked the repo but before creating a PR we thought opening a ticket here to know if there are other things we aren't considering with the solution.
SELECT table_name FROM information_schema.tables WHERE table_name = '%s' LIMIT 1
The text was updated successfully, but these errors were encountered: