summaryrefslogtreecommitdiff
path: root/doc/source
diff options
context:
space:
mode:
authorSebastian Thiel <byronimo@gmail.com>2011-07-05 16:45:39 +0200
committerSebastian Thiel <byronimo@gmail.com>2011-07-05 16:45:39 +0200
commita4deb8461e6fbca0306a24f22b0c494679ad4757 (patch)
tree3ac61ab9a5b5404236a898e16bfb59e267b39516 /doc/source
parentef5dc3d968b3aeed16a02ec705f89b72ad46fa84 (diff)
downloadgitdb-a4deb8461e6fbca0306a24f22b0c494679ad4757.tar.gz
wrote change log for next release.
Choosing memory manager type based on the actual python version for best efficiency
Diffstat (limited to 'doc/source')
-rw-r--r--doc/source/changes.rst5
1 files changed, 5 insertions, 0 deletions
diff --git a/doc/source/changes.rst b/doc/source/changes.rst
index 999cc13..839bf16 100644
--- a/doc/source/changes.rst
+++ b/doc/source/changes.rst
@@ -3,6 +3,11 @@ Changelog
#########
*****
+0.5.4
+*****
+* Adjusted implementation to use the SlidingMemoryManager by default in python 2.6 for efficiency reasons. In Python 2.4, the StaticMemoryManager will be used instead.
+
+*****
0.5.3
*****
* Added support for smmap. SmartMMap allows resources to be managed and controlled. This brings the implementation closer to the way git handles memory maps, such that unused cached memory maps will automatically be freed once a resource limit is hit. The memory limit on 32 bit systems remains though as a sliding mmap implementation is not used for performance reasons.