unofficial mirror of meta@public-inbox.org
 help / color / mirror / Atom feed
From: Eric Wong <e@yhbt.net>
To: meta@public-inbox.org
Subject: [PATCH] v2writable: drop SQLite-based multi_mid_q_new
Date: Mon, 20 Apr 2020 09:59:21 +0000	[thread overview]
Message-ID: <20200420095921.6333-1-e@yhbt.net> (raw)

We switched to the SDBM-based queue to store author/committer
info last month.

Fixes: c7acdfe78bda5bf3 ("v2: SDBM-based multi Message-ID queue")
---
 lib/PublicInbox/V2Writable.pm | 12 ------------
 1 file changed, 12 deletions(-)

diff --git a/lib/PublicInbox/V2Writable.pm b/lib/PublicInbox/V2Writable.pm
index 1c78ef24..feab606d 100644
--- a/lib/PublicInbox/V2Writable.pm
+++ b/lib/PublicInbox/V2Writable.pm
@@ -980,18 +980,6 @@ sub check_unindexed ($$$) {
 	}
 }
 
-# reuse Msgmap to store num => oid mapping (rather than num => mid)
-sub multi_mid_q_new () {
-	my ($fh, $fn) = tempfile('multi_mid-XXXXXXX', EXLOCK => 0, TMPDIR => 1);
-	my $multi_mid = PublicInbox::Msgmap->new_file($fn, 1);
-	$multi_mid->{dbh}->do('PRAGMA synchronous = OFF');
-	# for Msgmap->DESTROY:
-	$multi_mid->{tmp_name} = $fn;
-	$multi_mid->{pid} = $$;
-	close $fh or die "failed to close $fn: $!";
-	$multi_mid
-}
-
 sub multi_mid_q_push ($$$) {
 	my ($self, $sync, $oid) = @_;
 	my $multi_mid = $sync->{multi_mid} //= PublicInbox::MultiMidQueue->new;

                 reply	other threads:[~2020-04-20  9:59 UTC|newest]

Thread overview: [no followups] expand[flat|nested]  mbox.gz  Atom feed

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

  List information: https://public-inbox.org/README

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20200420095921.6333-1-e@yhbt.net \
    --to=e@yhbt.net \
    --cc=meta@public-inbox.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).