| 161 | | |
|---|
| 162 | | Simple caching (for development) |
|---|
| 163 | | -------------------------------- |
|---|
| 164 | | |
|---|
| 165 | | A simple, single-process memory cache is available as ``"simple:///"``. This |
|---|
| 166 | | merely saves cached data in-process, which means it should only be used in |
|---|
| 167 | | development or testing environments. For example:: |
|---|
| 168 | | |
|---|
| 169 | | CACHE_BACKEND = 'simple:///' |
|---|
| 170 | | |
|---|
| 171 | | **New in Django development version:** This cache backend is deprecated and |
|---|
| 172 | | will be removed in a future release. New code should use the ``locmem`` backend |
|---|
| 173 | | instead. |
|---|