Jump to content

Multiple db's or just one?


acctman

Recommended Posts

If your after speed - Whatever you gain would be lost connecting to multiple databases

 

Unless you have millions of queries an hour i wouldnt worry about it. Your better of caching content and compressing data to reduce server load:

 

#increase speed and preserve bandwidth
<ifmodule mod_php4.c>
php_value zlib.output_compression 16386
</ifmodule>

# 1 WEEK
<FilesMatch "\.(jpg|jpeg|gif|ico|png)$">
Header set Cache-Control "max-age=604800, public"
</FilesMatch>

# 5 MIN
<FilesMatch "\.(css|js|swf|flv)$">
Header set Cache-Control "max-age=172800, private, proxy-revalidate"
</FilesMatch>

Archived

This topic is now archived and is closed to further replies.

×
×
  • 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.