summaryrefslogtreecommitdiff
path: root/CHANGES
blob: 0c18978acb15df88536f2955b9b95be034444c8d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
0.2.3
=====
- support "min_compress_len" and "memcached_expire_time"
  with python-memcached backend.  Tests courtesy
  Justin Azoff #3

- Add support for coercion of string config values
  to Python objects - ints, "false", "true", "None".
  #4

- Added support to DBM file lock to allow reentrant
  access per key within a single thread, so that 
  even though the DBM backend locks for the whole file,
  a creation function that calls upon a different
  key in the cache can still proceed.  #5

- Fixed DBM glitch where multiple readers 
  could be serialized.

0.2.2
=====
- add Redis backend, courtesy Ollie Rutherfurd

0.2.1
=====
- move tests into tests/cache namespace
- py3k compatibility is in-place now, no
  2to3 needed.

0.2.0
=====

- Based on dogpile.core now, to get the package
  namespace thing worked out.

0.1.1
=====
- Fixed the configure_from_config() method of region
  and backend which wasn't working.  Courtesy
  Christian Klinger.

0.1.0
=====
Initial release.

Includes a pylibmc backend and a plain dictionary backend.