Closed
Bug 522818
Opened 16 years ago
Closed 16 years ago
Add memcache config for www-trunk.stage.mozilla.com
Categories
(mozilla.org Graveyard :: Server Operations, task)
Tracking
(Not tracked)
RESOLVED
FIXED
People
(Reporter: rdoherty, Assigned: chizu)
References
()
Details
We've added Minify (http://code.google.com/p/minify/) to mozilla.com for bug 500849. This concatenates CSS & JS, making the site faster.
It can put the concatenated files into memcache or /tmp, so I added memcache support, which requires adding the memcache config.
The code has been pushed to www-trunk.stage.mozilla.com
From /includes/config.inc.php-dist copy:
$config['memcache'] = array(
'localhost' => array(
'port' => '11211',
'timeout' => '1',
)
);
to /includes/config.inc.php and add the memcache server(s). It supports multiple and will fallback to a file based cache if it can't connect to any.
Let me know if any changes need to be made to support this, thanks!
Config added.
Status: NEW → RESOLVED
Closed: 16 years ago
Resolution: --- → FIXED
Updated•10 years ago
|
Product: mozilla.org → mozilla.org Graveyard
You need to log in
before you can comment on or make changes to this bug.
Description
•