diff options
author | Werner Koch <wk@gnupg.org> | 2019-04-13 11:48:58 +0200 |
---|---|---|
committer | Werner Koch <wk@gnupg.org> | 2019-04-13 11:48:58 +0200 |
commit | 64a5fd37271a3e454c0d59ac3500e1a1b232e4f7 (patch) | |
tree | 55cc3b73fe82d0d16491df9843789b49e80bca9a /g10/Makefile.am | |
parent | gpg: Cache a once computed fingerprint in PKT_public_key. (diff) | |
download | gnupg2-64a5fd37271a3e454c0d59ac3500e1a1b232e4f7.tar.xz gnupg2-64a5fd37271a3e454c0d59ac3500e1a1b232e4f7.zip |
gpg: New caching functions.
* g10/objcache.c: New.
* g10/objcache.h: New.
* g10/Makefile.am (common_source): Add them.
* g10/gpg.c: Include objcache.h.
(g10_exit): Call objcache_dump_stats.
* g10/getkey.c: Include objcache.h.
(get_primary_uid, release_keyid_list): Remove.
(cache_user_id): Remove.
(finish_lookup): Call the new cache_put_keyblock instead of
cache_user_id.
(get_user_id_string): Remove code for mode 2.
(get_user_id): Implement using cache_get_uid_bykid.
--
This generic caching module is better than the ad-hoc code we used in
getkey.c. More cleanup in getkey is still required but it is a
start. There is also a small performance increase with the new cache:
With a large keyring and --list-sigs I get these numbers:
| | before | after |
|------+------------+------------|
| real | 14m1.028s | 12m16.186s |
| user | 2m18.484s | 1m36.040s |
| sys | 11m42.420s | 10m40.044s |
Note the speedup in the user time which is due to the improved cache
algorithm. This is obvious, because the old cache was just a long
linked list; the new cache are two hash tables.
Signed-off-by: Werner Koch <wk@gnupg.org>
Diffstat (limited to 'g10/Makefile.am')
-rw-r--r-- | g10/Makefile.am | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/g10/Makefile.am b/g10/Makefile.am index 3b4464364..884b4749b 100644 --- a/g10/Makefile.am +++ b/g10/Makefile.am @@ -121,6 +121,7 @@ common_source = \ sig-check.c \ keylist.c \ pkglue.c pkglue.h \ + objcache.c objcache.h \ ecdh.c gpg_sources = server.c \ |