Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

One of the annoyances of mysqli is that the database connection is created when the object is constructed.

Many of us like to create the mysqli object in an include file instead of having database connection logic before every single query that we run. But if 100% of the data is being pulled from cache, then the connection ends up being a waste of resources.

How can I create a mysqli object inside my include file, but postpone the database connection until it is actually needed?

I'm entering this as a blog post but I would also welcome other answers if there is a more efficient way of doing this.

share|improve this question
Probably better on Code Review – Aaron W. Jun 28 '12 at 3:36
No, I don't think you're right. Code Review is for getting feedback on a project you are working on. SO is about solving a specific programming problem, I just happen to have solved it myself but it's a question others may have, hence why I am posting it as a blog post. I'm not asking "review my code", I'm asking "what are other solutions to this problem, here's mine" – andrewtweber Jun 28 '12 at 3:38
Mysql's connection protocol is actually quite fast. If you're really concerned about speed, you can always start using persistent connection pools, but those bring their own set of problems. – Marc B Jun 28 '12 at 4:55
True. I was concerned about RAM and CPU as well as speed. I think this solution is most useful for a website with lots of traffic where a majority of the content is static. If you can cut the number of connections by 20 or 50 or 80% then every little bit helps. The reason this question really arose was that previously I had a Wrapper class which used the mysql_* functions but converting that to mysqli wasn't very straightforward since it connected when constructing the object. – andrewtweber Jun 28 '12 at 5:04
The std mysqli extension template separates out parent::init() from parent::real_connect() so there is no problem in implementing a lazy connector extension as you want. However, there is something wrong with your runtime architecture if you are experiencing a material overhead for D/B connection. What is more relevant in your scenario is the efficacy of your caching solution and how you cache the corresponding metadata. – TerryE Jun 28 '12 at 11:13
show 3 more comments

1 Answer

up vote 2 down vote accepted

My solution uses a) an extension of the mysqli class and b) a wrapper class which uses the magic __call method

mysqli extension class

First I create a child class of mysqli. The only differences are: a) the constructor does NOT create a connection, and b) there is a new function connect() which does call the parent constructor.

class Weber_mysqli extends mysqli {
    protected $_connection = null;        
    protected $_dbhost, $_dbuser, $_dbpass, $_dbname;

    public function __construct($DBHOST, $DBUSER, $DBPASS, $DBNAME) {
        $this->_dbhost = $DBHOST; $this->_dbuser = $DBUSER; $this->_dbpass = $DBPASS; $this->_dbname = $DBNAME;
    }

    public function connect() {
        if( $this->_connection === null ) {    
            $this->_connection = true;
            parent::__construct($this->_dbhost, $this->_dbuser, $this->_dbpass, $this->_dbname);
        }
    }
}

Now the database connection is created when connect() is called and not when the object is constructed.

wrapper class

The second class now wraps around the extension class and catches ALL method calls.

The reason we can't simply put the __call function inside the extension class is that it checks for methods that do NOT exist; therefore, all mysqli functions would skip it since they exist inside the parent.

class Wrapper {
    protected $mysqli;

    public function __construct(Weber_mysqli $mysqli) {
        $this->mysqli = $mysqli;
    }

    public function __call($method, $args) {
        $this->mysqli->connect();
        return call_user_func_array(array($this->mysqli, $method), $args);
    }
}

Now to use this all you have to do in your include file is:

$_db = new Wrapper( new Weber_mysqli($DBHOST, $DBUSER, $DBPASS, $DBNAME) );

And to run a query, simply:

$exec = $_db->query($sql);

This establishes the connection, invokes mysqli::query and returns the mysqli_result. If you end up not using the Wrapper object, then no connection is created and no resources are wasted except a tiny bit of memory.

You can download the code uncondensed and commented here: http://andrewtweber.com/downloads/weber_mysqli.zip

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.