summaryrefslogtreecommitdiffstats
path: root/src/H5AC.c
diff options
context:
space:
mode:
authorQuincey Koziol <koziol@hdfgroup.org>2000-04-22 21:18:57 (GMT)
committerQuincey Koziol <koziol@hdfgroup.org>2000-04-22 21:18:57 (GMT)
commit932d6e38044794866b9405d95788b23c8c2f4b92 (patch)
tree9a750f550af85c1030ddcc80d2f6e640f623dcb2 /src/H5AC.c
parent75574e92e1a9f5dc2550235b846428d3db70476e (diff)
downloadhdf5-932d6e38044794866b9405d95788b23c8c2f4b92.zip
hdf5-932d6e38044794866b9405d95788b23c8c2f4b92.tar.gz
hdf5-932d6e38044794866b9405d95788b23c8c2f4b92.tar.bz2
[svn-r2190] Turned on address sorting when flushing metadata for entire file, which
improves performance significantly when lots of metadata I/O occurs when the file closes.
Diffstat (limited to 'src/H5AC.c')
-rw-r--r--src/H5AC.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/H5AC.c b/src/H5AC.c
index 909878b..dbe8ab1 100644
--- a/src/H5AC.c
+++ b/src/H5AC.c
@@ -18,6 +18,9 @@
* Robb Matzke, 4 Aug 1997
* Added calls to H5E.
*
+ * Quincey Koziol, 22 Apr 2000
+ * Turned on "H5AC_SORT_BY_ADDR"
+ *
*-------------------------------------------------------------------------
*/
#include <H5private.h>
@@ -29,7 +32,7 @@
* Sorting the cache by address before flushing is sometimes faster
* than flushing in cache order.
*/
-/* #define H5AC_SORT_BY_ADDR */
+#define H5AC_SORT_BY_ADDR
/*
* Private file-scope variables.