Opened 19 years ago
Closed 19 years ago
#3648 closed (fixed)
CMemcache support for faster memcached access.
| Reported by: | Owned by: | Jacob | |
|---|---|---|---|
| Component: | Core (Cache system) | Version: | dev |
| Severity: | Keywords: | memcached, memcache, speed, optimize, optimization | |
| Cc: | floguy@… | Triage Stage: | Ready for checkin |
| Has patch: | yes | Needs documentation: | no |
| Needs tests: | no | Patch needs improvement: | no |
| Easy pickings: | no | UI/UX: | no |
Description
cmemcache is a python wrapper around the libmemcache C library. According to the website:
cmemcache is about 2 times faster then python-memcache with short key names (8 characters), faster with larger key names.
That is a speed improvement that many django users would welcome. Since the cmemcache module is api-compatible with the current memcache module, all that's needed was a simple import clause.
There is still a fallback in case cmemcache cannot be found.
Attachments (1)
Change History (3)
by , 19 years ago
| Attachment: | cmemcache.patch added |
|---|
comment:1 by , 19 years ago
| Triage Stage: | Unreviewed → Ready for checkin |
|---|
comment:2 by , 19 years ago
| Resolution: | → fixed |
|---|---|
| Status: | new → closed |
Note:
See TracTickets
for help on using tickets.
Patch to allow cmemcache to be used instead of memcache.