very slow November 19, 2020, 05:57:47 PM my table has over 5 million rowseverytime I generate app it takes ages to load up why? Quote Selected
Re: very slow Reply #1 – November 20, 2020, 01:14:34 PM @muhdkhokhar the 5 million records will not affect the app generating performance but the number of database tables and columns you have will affect it. Because phprad has to generate files for each table. This means the more the table and columns you have in your database the more the time it takes to generate on a low-end device. Quote Selected
Re: very slow Reply #2 – November 20, 2020, 02:12:05 PM Quote from: willvin – November 20, 2020, 01:14:34 PM@muhdkhokhar the 5 million records will not affect the app generating performance but the number of database tables and columns you have will affect it. Because phprad has to generate files for each table. This means the more the table and columns you have in your database the more the time it takes to generate on a low-end device.Generating is not problemThe issue is when I access the page it bring up the data so late probably 10-15 secondshow do I improve it ? Quote Selected
Re: very slow Reply #3 – November 20, 2020, 04:15:03 PM @muhdkhokhar you can limit it by setting RecordLimit to a lesser number. this is the number of records you want to display per page. you can locate this setting in the List Page Properties. You should also make sure that the number of columns you are displaying on a list-page is few. Quote Selected