Dears,
I'm a beginner of PHP.
As we know, if the browsers receive volume amount of records will cause poor performance.
Do we have any tips to handle volume records?
thanks,
hgison
Any idea to handle volume records?
Moderator: General Moderators
Re: Any idea to handle volume records?
It sounds like you are referring to what value to paginate at? It seems that sites I have seen around either let you choose it,or make it some value like 50 if its just text, maybe less if there are pictures and such.
Re: Any idea to handle volume records?
yea.... cause sometimes more than thousands records will return to user, it make the browser hang few minutes.
Generally, how we handle this problem?
Generally, how we handle this problem?
Re: Any idea to handle volume records?
By not returning a thousand records at once?hgison wrote:yea.... cause sometimes more than thousands records will return to user, it make the browser hang few minutes.
Generally, how we handle this problem?
Re: Any idea to handle volume records?
yup, is it possible not return thousands records at once?
or measure the records volume, if its is more than 10 thousands records then pop up a waring window while user submit the request
or measure the records volume, if its is more than 10 thousands records then pop up a waring window while user submit the request
Re: Any idea to handle volume records?
look for the LIMIT Mysql clause