Re: [Django] #15815: Support memcached binary protocol in PyLibMCCache

2016-09-01 Thread Django
#15815: Support memcached binary protocol in PyLibMCCache
-+-
 Reporter:  mtigas   |Owner:
 Type:  New feature  |   Status:  closed
Component:  Core (Cache system)  |  Version:  1.3
 Severity:  Normal   |   Resolution:  duplicate
 Keywords:  sprint2013   | Triage Stage:  Accepted
Has patch:  1|  Needs documentation:  1
  Needs tests:  1|  Patch needs improvement:  1
Easy pickings:  0|UI/UX:  0
-+-
Changes (by edmorley):

 * status:  new => closed
 * cc: emorley@… (added)
 * resolution:   => duplicate


Comment:

 This has been fixed in ticket #20892, by adding generic support for
 passing parameters through to the memcached client constructor (and for
 all backends, not just `PyLibMCCache`).

 pylibmc's constructor is:
 {{{#!python
 def __init__(self, servers, behaviors=None, binary=False,
  username=None, password=None):
 }}}

 So on Django master (will be 1.11), binary mode can be enabled using eg:
 {{{#!python
 CACHES = {
 'default': {
 'BACKEND': 'django.core.cache.backends.memcached.PyLibMCCache',
 'LOCATION': '127.0.0.1:11211',
 'OPTIONS': {
 'binary': True,
 'username': 'user',
 'password': 'pass',
 'behaviors': {
 'ketama': True,
 }
 }
 }
 }
 }}}

 For more examples, see:
 https://docs.djangoproject.com/en/dev/topics/cache/#cache-arguments

 I'm going to try and backport these changes (plus ticket #27152) to
 django-pylibmc, so the same Django settings file will work for both, to
 make transitioning from "older Django+django-pylibmc backend" to "Django
 1.11+ with stock backend" easier.

--
Ticket URL: 
Django 
The Web framework for perfectionists with deadlines.

-- 
You received this message because you are subscribed to the Google Groups 
"Django updates" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-updates+unsubscr...@googlegroups.com.
To post to this group, send email to django-updates@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-updates/064.560e02215cf9b80c7a88c994061eea7b%40djangoproject.com.
For more options, visit https://groups.google.com/d/optout.


Re: [Django] #15815: Support memcached binary protocol in PyLibMCCache

2016-01-28 Thread Django
#15815: Support memcached binary protocol in PyLibMCCache
-+
 Reporter:  mtigas   |Owner:
 Type:  New feature  |   Status:  new
Component:  Core (Cache system)  |  Version:  1.3
 Severity:  Normal   |   Resolution:
 Keywords:  sprint2013   | Triage Stage:  Accepted
Has patch:  1|  Needs documentation:  1
  Needs tests:  1|  Patch needs improvement:  1
Easy pickings:  0|UI/UX:  0
-+

Comment (by edmorley):

 Correction: it affects both set() and add() from what I can now tell. The
 behaviour also seems inconsistent on newer versions too.

 I've opened an issue against pylibmc for this:
 https://github.com/lericson/pylibmc/issues/202

--
Ticket URL: 
Django 
The Web framework for perfectionists with deadlines.

-- 
You received this message because you are subscribed to the Google Groups 
"Django updates" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-updates+unsubscr...@googlegroups.com.
To post to this group, send email to django-updates@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-updates/064.0db190ca2dcde9115f8f3453c1c09fd3%40djangoproject.com.
For more options, visit https://groups.google.com/d/optout.


Re: [Django] #15815: Support memcached binary protocol in PyLibMCCache

2016-01-28 Thread Django
#15815: Support memcached binary protocol in PyLibMCCache
-+
 Reporter:  mtigas   |Owner:
 Type:  New feature  |   Status:  new
Component:  Core (Cache system)  |  Version:  1.3
 Severity:  Normal   |   Resolution:
 Keywords:  sprint2013   | Triage Stage:  Accepted
Has patch:  1|  Needs documentation:  1
  Needs tests:  1|  Patch needs improvement:  1
Easy pickings:  0|UI/UX:  0
-+

Comment (by edmorley):

 In case this helps anyone working on this in the future, if you get test
 failures running the Django pylibmc cache tests with binary mode enabled
 in `test_zero_timeout()` - I believe it's due to a bug in older versions
 of libmemcached-dev.

 This appears to only affect `.set()` and not `.add()`, and only appears if
 using binary mode. The bug means that a Django zero timeout (which is
 converted to `-1` when passed to pylibmc) is ignored by libmemcached and
 the key is in fact set after all.

 Affected libmemcached versions include that running on Travis on their
 Ubuntu precise images (which presuming they are using the official package
 is http://packages.ubuntu.com/precise/libmemcached-dev). libmemcached-dev
 1.0.8 on Ubuntu trusty works fine. I couldn't find a related bug or commit
 on https://launchpad.net/libmemcached but Launchpad is pretty painful to
 use so I may have just missed it.

--
Ticket URL: 
Django 
The Web framework for perfectionists with deadlines.

-- 
You received this message because you are subscribed to the Google Groups 
"Django updates" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-updates+unsubscr...@googlegroups.com.
To post to this group, send email to django-updates@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-updates/064.7a591bf62edccc89f077caa20384aa1c%40djangoproject.com.
For more options, visit https://groups.google.com/d/optout.


Re: [Django] #15815: Support memcached binary protocol in PyLibMCCache

2015-11-30 Thread Django
#15815: Support memcached binary protocol in PyLibMCCache
-+
 Reporter:  mtigas   |Owner:
 Type:  New feature  |   Status:  new
Component:  Core (Cache system)  |  Version:  1.3
 Severity:  Normal   |   Resolution:
 Keywords:  sprint2013   | Triage Stage:  Accepted
Has patch:  1|  Needs documentation:  1
  Needs tests:  1|  Patch needs improvement:  1
Easy pickings:  0|UI/UX:  0
-+
Changes (by mlowicki):

 * cc: mlowicki@… (added)


--
Ticket URL: 
Django 
The Web framework for perfectionists with deadlines.

-- 
You received this message because you are subscribed to the Google Groups 
"Django updates" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-updates+unsubscr...@googlegroups.com.
To post to this group, send email to django-updates@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-updates/064.43dcc8c468249d407564ecfc8f3652cd%40djangoproject.com.
For more options, visit https://groups.google.com/d/optout.


Re: [Django] #15815: Support memcached binary protocol in PyLibMCCache

2015-11-30 Thread Django
#15815: Support memcached binary protocol in PyLibMCCache
-+
 Reporter:  mtigas   |Owner:
 Type:  New feature  |   Status:  new
Component:  Core (Cache system)  |  Version:  1.3
 Severity:  Normal   |   Resolution:
 Keywords:  sprint2013   | Triage Stage:  Accepted
Has patch:  1|  Needs documentation:  1
  Needs tests:  1|  Patch needs improvement:  1
Easy pickings:  0|UI/UX:  0
-+

Comment (by mlowicki):

 any news about it?

--
Ticket URL: 
Django 
The Web framework for perfectionists with deadlines.

-- 
You received this message because you are subscribed to the Google Groups 
"Django updates" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-updates+unsubscr...@googlegroups.com.
To post to this group, send email to django-updates@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-updates/064.57f03238ea85e328f4f4993e1a1932dc%40djangoproject.com.
For more options, visit https://groups.google.com/d/optout.


Re: [Django] #15815: Support memcached binary protocol in PyLibMCCache

2015-07-28 Thread Django
#15815: Support memcached binary protocol in PyLibMCCache
-+
 Reporter:  mtigas   |Owner:
 Type:  New feature  |   Status:  new
Component:  Core (Cache system)  |  Version:  1.3
 Severity:  Normal   |   Resolution:
 Keywords:  sprint2013   | Triage Stage:  Accepted
Has patch:  1|  Needs documentation:  1
  Needs tests:  1|  Patch needs improvement:  1
Easy pickings:  0|UI/UX:  0
-+

Comment (by timgraham):

 I don't see a reviewable patch.

--
Ticket URL: 
Django 
The Web framework for perfectionists with deadlines.

-- 
You received this message because you are subscribed to the Google Groups 
"Django updates" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-updates+unsubscr...@googlegroups.com.
To post to this group, send email to django-updates@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-updates/064.3fa15c91a4c138f9bd28676a002e8627%40djangoproject.com.
For more options, visit https://groups.google.com/d/optout.


Re: [Django] #15815: Support memcached binary protocol in PyLibMCCache

2015-07-28 Thread Django
#15815: Support memcached binary protocol in PyLibMCCache
-+
 Reporter:  mtigas   |Owner:
 Type:  New feature  |   Status:  new
Component:  Core (Cache system)  |  Version:  1.3
 Severity:  Normal   |   Resolution:
 Keywords:  sprint2013   | Triage Stage:  Accepted
Has patch:  1|  Needs documentation:  1
  Needs tests:  1|  Patch needs improvement:  1
Easy pickings:  0|UI/UX:  0
-+

Comment (by thedrow):

 How come this is not supported? What's blocking it exactly?
 How can I help?

--
Ticket URL: 
Django 
The Web framework for perfectionists with deadlines.

-- 
You received this message because you are subscribed to the Google Groups 
"Django updates" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-updates+unsubscr...@googlegroups.com.
To post to this group, send email to django-updates@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-updates/064.d26181fe8d0fe3dc35d8701dacd03296%40djangoproject.com.
For more options, visit https://groups.google.com/d/optout.


Re: [Django] #15815: Support memcached binary protocol in PyLibMCCache

2015-03-21 Thread Django
#15815: Support memcached binary protocol in PyLibMCCache
-+
 Reporter:  mtigas   |Owner:
 Type:  New feature  |   Status:  new
Component:  Core (Cache system)  |  Version:  1.3
 Severity:  Normal   |   Resolution:
 Keywords:  sprint2013   | Triage Stage:  Accepted
Has patch:  1|  Needs documentation:  1
  Needs tests:  1|  Patch needs improvement:  1
Easy pickings:  0|UI/UX:  0
-+
Changes (by bpeschier):

 * owner:  bpeschier =>
 * status:  assigned => new


--
Ticket URL: 
Django 
The Web framework for perfectionists with deadlines.

-- 
You received this message because you are subscribed to the Google Groups 
"Django updates" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-updates+unsubscr...@googlegroups.com.
To post to this group, send email to django-updates@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-updates/064.0215e9dd3083128a667ab8eb24779508%40djangoproject.com.
For more options, visit https://groups.google.com/d/optout.


Re: [Django] #15815: Support memcached binary protocol in PyLibMCCache

2013-12-23 Thread Django
#15815: Support memcached binary protocol in PyLibMCCache
-+-
 Reporter:  mtigas   |Owner:  bpeschier
 Type:  New feature  |   Status:  assigned
Component:  Core (Cache system)  |  Version:  1.3
 Severity:  Normal   |   Resolution:
 Keywords:  sprint2013   | Triage Stage:  Accepted
Has patch:  1|  Needs documentation:  1
  Needs tests:  1|  Patch needs improvement:  1
Easy pickings:  0|UI/UX:  0
-+-

Comment (by the_drow):

 So this is already implemented in https://github.com/jbalogh/django-
 pylibmc.
 Shouldn't we just merge that cache provider back?

-- 
Ticket URL: 
Django 
The Web framework for perfectionists with deadlines.

-- 
You received this message because you are subscribed to the Google Groups 
"Django updates" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-updates+unsubscr...@googlegroups.com.
To post to this group, send email to django-updates@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-updates/064.1d856ed32b1c8d4f0f1cfb4e0ca4f92a%40djangoproject.com.
For more options, visit https://groups.google.com/groups/opt_out.


Re: [Django] #15815: Support memcached binary protocol in PyLibMCCache

2013-05-18 Thread Django
#15815: Support memcached binary protocol in PyLibMCCache
-+-
 Reporter:  mtigas   |Owner:  bpeschier
 Type:  New feature  |   Status:  assigned
Component:  Core (Cache system)  |  Version:  1.3
 Severity:  Normal   |   Resolution:
 Keywords:  sprint2013   | Triage Stage:  Accepted
Has patch:  1|  Needs documentation:  1
  Needs tests:  1|  Patch needs improvement:  1
Easy pickings:  0|UI/UX:  0
-+-

Comment (by otherjacob):

 I really don't think special casing is a big deal here -- it's not far off
 of what BaseCache does already, although I'd rather `pop` binary off of
 _options in the _cache method before setting behaviors to it.

 Happy to finish this off if bpeschier can't get to it, but it's almost
 done at this point I think.

-- 
Ticket URL: 
Django 
The Web framework for perfectionists with deadlines.

-- 
You received this message because you are subscribed to the Google Groups 
"Django updates" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-updates+unsubscr...@googlegroups.com.
To post to this group, send email to django-updates@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.




Re: [Django] #15815: Support memcached binary protocol in PyLibMCCache

2013-02-24 Thread Django
#15815: Support memcached binary protocol in PyLibMCCache
-+-
 Reporter:  mtigas   |Owner:  bpeschier
 Type:  New feature  |   Status:  assigned
Component:  Core (Cache system)  |  Version:  1.3
 Severity:  Normal   |   Resolution:
 Keywords:  sprint2013   | Triage Stage:  Accepted
Has patch:  1|  Needs documentation:  1
  Needs tests:  1|  Patch needs improvement:  1
Easy pickings:  0|UI/UX:  0
-+-
Changes (by bpeschier):

 * owner:  nobody => bpeschier
 * status:  new => assigned


Comment:

 Working on it here: https://github.com/bpeschier/django/tree/ticket_15815

 Still needs some docs to demystify the options for pylibmc a bit.
 Currently all options are set as behaviors except binary (which still
 feels a bit ugly)

-- 
Ticket URL: 
Django 
The Web framework for perfectionists with deadlines.

-- 
You received this message because you are subscribed to the Google Groups 
"Django updates" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-updates+unsubscr...@googlegroups.com.
To post to this group, send email to django-updates@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.




Re: [Django] #15815: Support memcached binary protocol in PyLibMCCache

2013-02-24 Thread Django
#15815: Support memcached binary protocol in PyLibMCCache
-+
 Reporter:  mtigas   |Owner:  nobody
 Type:  New feature  |   Status:  new
Component:  Core (Cache system)  |  Version:  1.3
 Severity:  Normal   |   Resolution:
 Keywords:  sprint2013   | Triage Stage:  Accepted
Has patch:  1|  Needs documentation:  1
  Needs tests:  1|  Patch needs improvement:  1
Easy pickings:  0|UI/UX:  0
-+
Changes (by bpeschier):

 * keywords:   => sprint2013


Comment:

 Enabling binary mode breaks the tests at the moment, because keys with
 spaces are actually allowed in binary mode.

-- 
Ticket URL: 
Django 
The Web framework for perfectionists with deadlines.

-- 
You received this message because you are subscribed to the Google Groups 
"Django updates" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-updates+unsubscr...@googlegroups.com.
To post to this group, send email to django-updates@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.




Re: [Django] #15815: Support memcached binary protocol in PyLibMCCache

2013-02-24 Thread Django
#15815: Support memcached binary protocol in PyLibMCCache
-+
 Reporter:  mtigas   |Owner:  nobody
 Type:  New feature  |   Status:  new
Component:  Core (Cache system)  |  Version:  1.3
 Severity:  Normal   |   Resolution:
 Keywords:   | Triage Stage:  Accepted
Has patch:  1|  Needs documentation:  1
  Needs tests:  1|  Patch needs improvement:  1
Easy pickings:  0|UI/UX:  0
-+

Comment (by aaugustin):

 #19810 is related.

-- 
Ticket URL: 
Django 
The Web framework for perfectionists with deadlines.

-- 
You received this message because you are subscribed to the Google Groups 
"Django updates" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-updates+unsubscr...@googlegroups.com.
To post to this group, send email to django-updates@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.




Re: [Django] #15815: Support memcached binary protocol in PyLibMCCache

2011-10-25 Thread Django
#15815: Support memcached binary protocol in PyLibMCCache
-+
 Reporter:  mtigas   |Owner:  nobody
 Type:  New feature  |   Status:  new
Component:  Core (Cache system)  |  Version:  1.3
 Severity:  Normal   |   Resolution:
 Keywords:   | Triage Stage:  Accepted
Has patch:  1|  Needs documentation:  1
  Needs tests:  1|  Patch needs improvement:  1
Easy pickings:  0|UI/UX:  0
-+
Changes (by robhudson):

 * cc: rob@… (added)


Comment:

 I recently updated django-pylibmc, a 3rd party cache backend, with a few
 features we wanted at Mozilla.  Namely, to make a timeout of zero mean an
 infinite timeout, add compression support (which pylibmc handles), and
 support the binary protocol.  The package can be found here:
 https://github.com/jbalogh/django-pylibmc.

 I'd be happy to help push this forward or bring some code over into
 Django.  Mapping `OPTIONS` to pylibmc "behaviors" and adding the extra
 `BINARY=True` parameter made sense to me.  But whichever way is decided,
 this should be an easy thing to add to this backend.

-- 
Ticket URL: 
Django 
The Web framework for perfectionists with deadlines.

-- 
You received this message because you are subscribed to the Google Groups 
"Django updates" group.
To post to this group, send email to django-updates@googlegroups.com.
To unsubscribe from this group, send email to 
django-updates+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-updates?hl=en.



Re: [Django] #15815: Support memcached binary protocol in PyLibMCCache

2011-07-08 Thread Django
#15815: Support memcached binary protocol in PyLibMCCache
-+-
   Reporter:  mtigas |  Owner:  nobody
   Type:  New| Status:  new
  feature|  Component:  Core (Cache system)
  Milestone: |   Severity:  Normal
Version:  1.3|   Keywords:
 Resolution: |  Has patch:  1
   Triage Stage:  Accepted   |Needs tests:  1
Needs documentation:  1  |  Easy pickings:  0
Patch needs improvement:  1  |
  UI/UX:  0  |
-+-
Changes (by bkonkle):

 * cc: brandon.konkle@… (added)
 * ui_ux:   => 0


-- 
Ticket URL: 
Django 
The Web framework for perfectionists with deadlines.

-- 
You received this message because you are subscribed to the Google Groups 
"Django updates" group.
To post to this group, send email to django-updates@googlegroups.com.
To unsubscribe from this group, send email to 
django-updates+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-updates?hl=en.



Re: [Django] #15815: Support memcached binary protocol in PyLibMCCache

2011-04-22 Thread Django
#15815: Support memcached binary protocol in PyLibMCCache
-+-
   Reporter:  mtigas |  Owner:  nobody
   Type:  New| Status:  new
  feature|  Component:  Core (Cache system)
  Milestone: |   Severity:  Normal
Version:  1.3|   Keywords:
 Resolution: |  Has patch:  1
   Triage Stage:  Accepted   |Needs tests:  1
Needs documentation:  1  |  Easy pickings:  0
Patch needs improvement:  1  |
-+-

Comment (by mtigas):

 I’ll agree with that, though I wasn’t sure how to make this semantically
 better.

 For the older cache framework, django-newcache accepted `binary` as a
 cache param (with `timeout`, `cull_frequency`, et. al.), with
 `CACHE_BEHAVIORS` as a separate settings option. (Using django-newcache as
 a comparison point since some of the newer 1.3+ cache features like
 versioning and key prefixing appear to have been based on the `newcache`
 implementation.)

 But I didn’t quite feel that special casing `PyLibMCCache` to accept a new
 base parameter was correct, either …

 {{{
 CACHES = {
 'default' : {
 "BACKEND" : 'django.core.cache.backends.memcached.PyLibMCCache',
 "LOCATION" : '127.0.0.1:11211',
 "BINARY" : True,
 "OPTIONS" : dict(tcp_nodelay=True, ketama=True),
 }
 }
 }}}

 … since the description of `OPTIONS` reads, “Any options that should be
 passed to cache backend. The list options understood by each backend vary
 with each backend. […] Cache backends backed by a third-party library will
 pass their options directly to the underlying cache library.”

 In particular, that seems to imply that for consistency’s sake, all
 implementation-specific options regarding a backend should go into
 `OPTIONS` and that it’s up to the backend to do what it needs to provide
 the correct information to the underlying library.

 Technically, a more semantically-correct option would be to do something
 like:

 {{{
 CACHES = {
 'default' : {
 "BACKEND" : 'django.core.cache.backends.memcached.PyLibMCCache',
 "LOCATION" : '127.0.0.1:11211',
 "OPTIONS" : {
 "binary": True,
 "behaviors" : dict(tcp_nodelay=True, ketama=True),
 }
 }
 }
 }}}

 Not really sure what the best patch would be at this point.

-- 
Ticket URL: 
Django 
The Web framework for perfectionists with deadlines.

-- 
You received this message because you are subscribed to the Google Groups 
"Django updates" group.
To post to this group, send email to django-updates@googlegroups.com.
To unsubscribe from this group, send email to 
django-updates+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-updates?hl=en.



Re: [Django] #15815: Support memcached binary protocol in PyLibMCCache

2011-04-21 Thread Django
#15815: Support memcached binary protocol in PyLibMCCache
-+-
   Reporter:  mtigas |  Owner:  nobody
   Type:  New| Status:  new
  feature|  Component:  Core (Cache system)
  Milestone: |   Severity:  Normal
Version:  1.3|   Keywords:
 Resolution: |  Has patch:  1
   Triage Stage:  Accepted   |Needs tests:  1
Needs documentation:  1  |  Easy pickings:  0
Patch needs improvement:  1  |
-+-
Changes (by jacob):

 * needs_docs:  0 => 1
 * needs_better_patch:  0 => 1
 * needs_tests:  0 => 1
 * easy:   => 0
 * stage:  Unreviewed => Accepted


Comment:

 The patch isn't ideal - special-casing "binary" is a bit annoying - but
 this is totally worth having.

-- 
Ticket URL: 
Django 
The Web framework for perfectionists with deadlines.

-- 
You received this message because you are subscribed to the Google Groups 
"Django updates" group.
To post to this group, send email to django-updates@googlegroups.com.
To unsubscribe from this group, send email to 
django-updates+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-updates?hl=en.



Re: [Django] #15815: Support memcached binary protocol in PyLibMCCache

2011-04-12 Thread Django
#15815: Support memcached binary protocol in PyLibMCCache
---+---
   Reporter:  mtigas   |Owner:  nobody
   Type:  New feature  |   Status:  new
  Milestone:   |Component:  Core (Cache system)
Version:  1.3  | Severity:  Normal
 Resolution:   | Keywords:
   Triage Stage:  Unreviewed   |Has patch:  1
Needs documentation:  0|  Needs tests:  0
Patch needs improvement:  0|
---+---
Changes (by mtigas):

 * needs_better_patch:   => 0
 * needs_tests:   => 0
 * needs_docs:   => 0


Comment:

 Not sure if patch is in the proper format; have also opened a github pull
 request, tracking this bug. [https://github.com/django/django/pull/21]

 Looked into updating the docs, however the documentation appears to leave
 out implementation-specific details of the different memcached backends.
 Please let me know if I’m mistaken.

-- 
Ticket URL: 
Django 
The Web framework for perfectionists with deadlines.

-- 
You received this message because you are subscribed to the Google Groups 
"Django updates" group.
To post to this group, send email to django-updates@googlegroups.com.
To unsubscribe from this group, send email to 
django-updates+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-updates?hl=en.