diff --git a/django/core/cache/backends/memcached.py b/django/core/cache/backends/memcached.py
index e452498..c8ecdcb 100644
a
|
b
|
class PyLibMCCache(BaseMemcachedCache):
|
169 | 169 | if client: |
170 | 170 | return client |
171 | 171 | |
172 | | client = self._lib.Client(self._servers) |
| 172 | if self._options and self._options.get("binary", False): |
| 173 | client = self._lib.Client(self._servers, binary=True) |
| 174 | else: |
| 175 | client = self._lib.Client(self._servers) |
| 176 | |
173 | 177 | if self._options: |
174 | 178 | client.behaviors = self._options |
175 | 179 | |