From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.2 (2018-09-13) on dcvr.yhbt.net X-Spam-Level: X-Spam-ASN: X-Spam-Status: No, score=-4.3 required=3.0 tests=ALL_TRUSTED,AWL,BAYES_00 shortcircuit=no autolearn=ham autolearn_force=no version=3.4.2 Received: from localhost (dcvr.yhbt.net [127.0.0.1]) by dcvr.yhbt.net (Postfix) with ESMTP id 365611F5A1 for ; Sun, 5 Jan 2020 23:23:37 +0000 (UTC) From: Eric Wong To: meta@public-inbox.org Subject: [PATCH 3/6] altid: use msgmap at compile time Date: Sun, 5 Jan 2020 23:23:33 +0000 Message-Id: <20200105232336.26023-4-e@yhbt.net> In-Reply-To: <20200105232336.26023-1-e@yhbt.net> References: <20200105232336.26023-1-e@yhbt.net> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit List-Id: AltId requires Msgmap to work, which requires SQLite. Search also requires SQLite3 (for Over), nowadays, so there's no reason for us to lazy-load Msgmap and SQLite anymore. --- lib/PublicInbox/AltId.pm | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/lib/PublicInbox/AltId.pm b/lib/PublicInbox/AltId.pm index b4daaed2..6b03d603 100644 --- a/lib/PublicInbox/AltId.pm +++ b/lib/PublicInbox/AltId.pm @@ -13,6 +13,7 @@ package PublicInbox::AltId; use strict; use warnings; use URI::Escape qw(uri_unescape); +use PublicInbox::Msgmap; # spec: TYPE:PREFIX:param1=value1¶m2=value2&... # The PREFIX will be a searchable boolean prefix in Xapian @@ -22,8 +23,6 @@ sub new { my ($type, $prefix, $query) = split(/:/, $spec, 3); $type eq 'serial' or die "non-serial not supported, yet\n"; - require PublicInbox::Msgmap; - my %params = map { my ($k, $v) = split(/=/, uri_unescape($_), 2); $v = '' unless defined $v;