summaryrefslogtreecommitdiffstats
path: root/release_docs
diff options
context:
space:
mode:
authorNeil Fortner <nfortne2@hdfgroup.org>2009-02-12 20:55:17 (GMT)
committerNeil Fortner <nfortne2@hdfgroup.org>2009-02-12 20:55:17 (GMT)
commit06b84174ea816480e9b49a1eaa46897eefa591e8 (patch)
treed3f6fb5bcfbd5fb5ed7effaa9c52b915f6e7861c /release_docs
parent7ca7c77cd41672f7e0c9bc21dd65ab4732dcfe5f (diff)
downloadhdf5-06b84174ea816480e9b49a1eaa46897eefa591e8.zip
hdf5-06b84174ea816480e9b49a1eaa46897eefa591e8.tar.gz
hdf5-06b84174ea816480e9b49a1eaa46897eefa591e8.tar.bz2
[svn-r16482] Purpose: Improve chunk cache
Description: The meaning of the "nbytes" field in H5D_rdcc_t was not clear, and some places assumed it was the maximum size of the chunk cache, while some assumed it was the current size of the chunk cache. The end result was that only 1 chunk could be held in cache at a time. This field has been replaced by "nbytes_max" and "nbytes_used". Performance of cached I/O should improve greatly. Tested: jam, smirom (h5committest)
Diffstat (limited to 'release_docs')
-rw-r--r--release_docs/RELEASE.txt2
1 files changed, 2 insertions, 0 deletions
diff --git a/release_docs/RELEASE.txt b/release_docs/RELEASE.txt
index 5690b68..88cca65 100644
--- a/release_docs/RELEASE.txt
+++ b/release_docs/RELEASE.txt
@@ -81,6 +81,8 @@ Bug Fixes since HDF5-1.6.8 Release
Library
-------
+ - Fixed a bug that prevented more than one dataset chunk from being cached
+ at a time. NAF - 2009/02/12
- H5Dset_extent: when shrinking dimensions, some chunks were not deleted.
Shrinking to a zero size dimension caused an assertion in the library.
(PVN - 2009/01/8)