hi, thanks everyone for replying.
i dont have too many fancy html, just the plain table tags. no images, text, natta. just table tags. :)
i'm fetching about 2200 rows, with 10 columns, 1 table and it will take 12-16 seconds to load (i'm using a cable modem) up the html and for it to be displayed on the browser.
-AT- first i was using fetchall_arrayref (until i learned that this way is the slowest and causes the most memory strain on the webserver.
-THEN- i decided to use bind_columns with fetch. I too also heard this way was the best from two of the tutorials on here (
Files and Databases).
-HOWEVER- whether using either way, BOTH fetchall-arrayref and bind_columns methods take about the same amount of time to display the results on the browser, again around 12-16 seconds.
That is mainly why I decided to come here to post a question relating to this topic. I'm figuring bind_columns is the fastest/efficient way to do the job I'm trying to do, and that it takes the same amount of time as fetchall_arrayref because its on the browser end, therefore it still needs to wait for the '/table' tag.
one question that I now have-
would placing a max row option or a limit in the sql improve the efficiency/speed?
thanks
=perleager=
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.