* New bucket cache The bucket cache support has been rewritten from scratch. The new bucket cache code provides for significant speed up of search operations. * Change mmap prereading strategy Pre-reading of the memory mapper regions, introduced in version 1.19 can be advantageous only when doing intensive look-ups on a read-only database. It degrades performance otherwise, especially if doing multiple inserts. Therefore, this version introduces a new flag to gdbm_open: GDBM_PREREAD. When given, it enables pre-reading of memory mapped regions. - modified patches % gdbm-no-build-date.patch (refreshed) OBS-URL: https://build.opensuse.org/package/show/devel:libraries:c_c++/gdbm?expand=0&rev=67
15 lines
534 B
Diff
15 lines
534 B
Diff
Index: gdbm-1.20/src/version.c
|
|
===================================================================
|
|
--- gdbm-1.20.orig/src/version.c 2021-08-09 16:11:00.444941421 +0200
|
|
+++ gdbm-1.20/src/version.c 2021-08-09 16:11:18.649067219 +0200
|
|
@@ -24,9 +24,6 @@
|
|
making the distdir. */
|
|
const char * gdbm_version = "GDBM version " PACKAGE_VERSION ". "
|
|
"17/06/2021"
|
|
-#if defined(__STDC__) && defined(__DATE__) && defined(__TIME__)
|
|
- " (built " __DATE__ " " __TIME__ ")"
|
|
-#endif
|
|
;
|
|
int const gdbm_version_number[3] = {
|
|
GDBM_VERSION_MAJOR,
|