Jump to content

Most Effecient Practice For Database Interaction


Recommended Posts

Hi There,

 

I'm developing for a web site that requires multiple bits of data from the database for each outputted page (eg. site settings parameters; module settings; page content; sidebar content; etc.).

 

At the moment my script creates a new "database query" object for each query, which in itself creates a connection to the database, sends the query, and parses the results. That means that a new connection is created and closed for each query...

 

Now I am wondering is it better to

1) Open and close connection for each query within the script;

2) Open a pconnect for each query within the script;

2) Open a connection at the top of the script and close it at the end of the script;

 

I seem to be able to find arguments for and against each method, but I am wondering which is likely to be the most efficient in terms of maximum number of simultaneous outputted pages. This site this is for is usually quiet but occasionally gets large numbers (thousands or tens of thousands) of hits in a few minutes.

 

The setup is PHP running as an Apache2 Module, with the database on the same box. I'd be very grateful for any insights.

Link to comment
Share on other sites

Definitely not open and close all the time. That will just result in unnecessary overhead and if you sometimes get tens of thousands of hits in few minutes then your performance must be top-notch. You should only connect once per script execution (unless you need simultaneous access to a secondary database server of course).

Link to comment
Share on other sites

My first advice would be to cache anything that seems logical to cache.

 

 

As to connecting:

 

Do not connect each query!  What would be the point in that?  That would be like reintroducing your self everytime you said something to a certain person.

 

Like Daniel said, I would suggest just having 1 connection open to the database.

 

You could use a persistent connection, but depending on the database driver that you're using, it might be being handled silently.

Link to comment
Share on other sites

Sound advice here.

 

Just make a db.inc and include it in whichever page you need a database connection. Then, you can just call say

 

$result = mysql_query("SELECT * FROM LOLO;", $db /* this is the resource created in db.inc */);

 

Cheers

Link to comment
Share on other sites

Thanks guys, that's fantastic advice and really appreciated. I have reworked my app as suggested, to make a single connection on the first database query which seems to stay open until the end of the script - the execution time on each page is quicker and the code is neater too!

 

I've never actually worked with caching data before, but I think it's a valuable suggestion. I have a quick question about the best way to approach the security aspect of caching...?

 

Site settings, for example, I guess could be written to a file whenever they are changed, and then called from the file (rather than the database). But given that I don't seem to be able to write to any directory that doesn't have 777 permissions, what's to stop some ner'do'well grabbing the file and making a mess of it (or worse)?

 

The particular server that the site will be on is not administered by me, so I don't have any choice over open base dir and safe mode settings.

 

Again, any insight from those with experience is very gratefully received!

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.