Closed Bug 694604 Opened 13 years ago Closed 13 years ago

[addons-dev] Switch to new pylibmc connector

Categories

(Infrastructure & Operations Graveyard :: WebOps: Other, task)

x86
macOS
task
Not set
normal

Tracking

(Not tracked)

RESOLVED FIXED

People

(Reporter: jbalogh, Assigned: oremj)

References

Details

We switched to pylibmc in bug 674067 but Django's built-in lib is a little buggy. robhudson wrote a new one; we just need to change CACHES to use it.

Please change CACHES[default][BACKEND] to 'django_pylibmc.memcached.PyLibMCCache'. We should end up with something like this:

CACHES = {
    'default': {
#       'BACKEND': 'django.core.cache.backends.memcached.MemcachedCache',
        'BACKEND': 'django_pylibmc.memcached.PyLibMCCache',
        'LOCATION': [
            'memcache1-dev:11211',
        ],
        'TIMEOUT': 500,
    },
}

This is the only known blocker for rolling out pylibmc on prod and (hopefully) getting a little perf boost.
Assignee: server-ops → jeremy.orem+bugs
Blocks: 682801
Done on stage and dev.
Status: NEW → RESOLVED
Closed: 13 years ago
Resolution: --- → FIXED
Component: Server Operations: Web Operations → WebOps: Other
Product: mozilla.org → Infrastructure & Operations
Product: Infrastructure & Operations → Infrastructure & Operations Graveyard
You need to log in before you can comment on or make changes to this bug.