P
|
Penultimatum 2/22/2019 |
Maybe under the 'Search and Filter settings' set 'hide data until search' so that it does not query the data until you have specified the search parameters? |
S
|
sadisticmagician author 2/22/2019 |
Maybe under the 'Search and Filter settings' set 'hide data until search' so that it does not query the data until you have specified the search parameters?
|
Sergey Kornilov 2/22/2019 | |
Your database misses some indexes. You need to figure out what queries run slow and add indexes that will speed up your application. PHPRunner never "load all the db" unless you specifically tell it so. If you use WHERE tabs - this is the first place where you need to look. |
S
|
sadisticmagician author 2/25/2019 |
Your database misses some indexes. You need to figure out what queries run slow and add indexes that will speed up your application. PHPRunner never "load all the db" unless you specifically tell it so. If you use WHERE tabs - this is the first place where you need to look. More info: https://xlinesoft.com/blog/2011/04/08/improving-perfomance-of-phprunnerasprunnerpro-applications/
|
Sergey Kornilov 2/25/2019 | |
You need to post your project to Demo Account and contact support directly. We'll assist you with this. |
A
|
acpan 4/1/2019 |
Hi, My db have index on timestamp. I have in 'WHERE TABS' this query for '2018' year: my_timestamp_data >= '2019-01-01' AND my_timestamp_data < '2020-01-01' But it is already slow. |