vote up 0 vote down star

Is it advisable to store SQL Connection objects in memcache?

flag

53% accept rate

3 Answers

vote up 3 vote down check

I would not store a connection object in any type of cache. With connection pooling opening a connection is very quick, so there is no need to cache it.

link|flag
vote up 0 vote down

Do you realize you're asking if you can cache a connection behind a connection?

Caching: connect to memcached, fetch connection

No caching: connect to database

You can't get around a connection, so I really don't see why you would want to do this.

link|flag
vote up 0 vote down

In PHP this isn't even possible. If you try and serialize a database connection handler or a file handler you're in for a surprise.

$f = fopen('handler-serialize.php', 'r');
var_dump(serialize($f));
fclose($f);

The output of this would be:

string 'i:0;' (length=4)

I don't know how this is handled in other languages, but I would presume that all languages do not allow you to store handlers to resources that might not exist anymore when the stored values are woken up at a later date.

So to answer you question, no it is not advisable to store Connection objects in memcached.

link|flag

Your Answer

Get an OpenID
or

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