diff options
author | Marc Espie <espie@cvs.openbsd.org> | 2022-05-16 15:54:05 +0000 |
---|---|---|
committer | Marc Espie <espie@cvs.openbsd.org> | 2022-05-16 15:54:05 +0000 |
commit | ed260ddeb14fec903e01b958e155b89ee469e157 (patch) | |
tree | 56d27ad90b6e0f23d90d426e4f46dadce4896c42 /usr.sbin/pkg_add | |
parent | f0b527b74f541b9b3abe153b58c918280dadb7e9 (diff) |
document failed experiment
Diffstat (limited to 'usr.sbin/pkg_add')
-rw-r--r-- | usr.sbin/pkg_add/OpenBSD/PackageRepository/Cache.pm | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/usr.sbin/pkg_add/OpenBSD/PackageRepository/Cache.pm b/usr.sbin/pkg_add/OpenBSD/PackageRepository/Cache.pm index fe851f7e588..97467103259 100644 --- a/usr.sbin/pkg_add/OpenBSD/PackageRepository/Cache.pm +++ b/usr.sbin/pkg_add/OpenBSD/PackageRepository/Cache.pm @@ -1,5 +1,5 @@ # ex:ts=8 sw=4: -# $OpenBSD: Cache.pm,v 1.8 2022/05/12 04:41:43 espie Exp $ +# $OpenBSD: Cache.pm,v 1.9 2022/05/16 15:54:04 espie Exp $ # # Copyright (c) 2022 Marc Espie <espie@openbsd.org> # @@ -84,6 +84,10 @@ sub prime_update_info_cache $total)); my $done = 0; my $oldname = ""; + # This can't go much faster, I've tried splitting the params + # and running several locate(1) in //, but this yields negligible + # gains for a lot of added complexity (reduced from 18 to 14 seconds + # on my usual package install). open my $fh, "-|", $self->pipe_locate(map { "$_-[0-9]*"} @list) or $state->fatal("Can't run locate: #1", $!); while (<$fh>) { |