summaryrefslogtreecommitdiffstats
path: root/release_docs
diff options
context:
space:
mode:
authorVailin Choi <vchoi@hdfgroup.org>2019-02-06 16:49:51 (GMT)
committerVailin Choi <vchoi@jam.ad.hdfgroup.org>2019-02-06 18:02:36 (GMT)
commit29fc6bcd77b0e975d807ecedf16b998493f88bb0 (patch)
tree252f04ce82bbac557bfe2d564917c05af7b3843d /release_docs
parent9063babaaa9b3c11a686ca9faefb70aa2091c21a (diff)
downloadhdf5-29fc6bcd77b0e975d807ecedf16b998493f88bb0.zip
hdf5-29fc6bcd77b0e975d807ecedf16b998493f88bb0.tar.gz
hdf5-29fc6bcd77b0e975d807ecedf16b998493f88bb0.tar.bz2
Merge pull request #1522 in HDFFV/hdf5 from ~VCHOI/my_hdf5_fork:develop to develop
* commit '7f5741825db0737db5ac46c43009681508a73002': Add release notes information. Modification based on feedback from pull request. Modification based on feedback from pull request. There is performance issue when closing an object. The slow down is due to the search of the "tag_list" to find out the "corked" status of an object. The fix: (1) Add a counter "num_objs_corked" in the cache structure to track the number of "corked" objects. (2) Skip the search of "tag_list" if the counter is zero i.e. no "corked" objects. Conflicts: release_docs/RELEASE.txt
Diffstat (limited to 'release_docs')
-rw-r--r--release_docs/RELEASE.txt10
1 files changed, 10 insertions, 0 deletions
diff --git a/release_docs/RELEASE.txt b/release_docs/RELEASE.txt
index fd8de96..2333e26 100644
--- a/release_docs/RELEASE.txt
+++ b/release_docs/RELEASE.txt
@@ -338,6 +338,16 @@ Bug Fixes since HDF5-1.10.3 release
Library
-------
+ - Performance issue when closing an object
+
+ The slow down is due to the search of the "tag_list" to find
+ out the "corked" status of an object and "uncork" it if so.
+
+ Improve porformance by skipping the search of the "tag_list"
+ if there are no "corked" objects when closing an object.
+
+ (VC - 2019/2/6)
+
- Revert H5Oget_info* and H5Ovisit* functions
In 1.10.3 new H5Oget_info*2 and H5Ovisit*2 functions were