I have an array of id's(array1) each with corresponding hits(array2). I'm using an imploded array1 to select ids from a table. like so: select * from table where id in $array1; Now i want to add the corresponding hits(array2) of each id in the query result. The problem is that the result is automati...
More than 1gb if the database is populated completely, but right now i have more than 50MB and the total time it takes the page to load is 8 seconds (local ftp server). And i could just imagine how long it will take when the database is complete and in a live site.
Thanks for your reply, my code has paging in it, the process is just taking too long i think because of the huge contents. Think of them like short stories, and the div that has the longest loading time is the one that displays the highlighted search results hits per line of the story. Would ajax as...
I'm currently developing a web application that handles huge contents. In my main page i have 3 panes, each with different functions to show dynamic results (from a search template). I have a problem in loading the entire page because it first waits for all of the 3 divisions to be processed before ...