user/dev discussion of public-inbox itself
 help / color / mirror / code / Atom feed
* [PATCH] v2writable: drop SQLite-based multi_mid_q_new
@ 2020-04-20  9:59 Eric Wong
  0 siblings, 0 replies; only message in thread
From: Eric Wong @ 2020-04-20  9:59 UTC (permalink / raw)
  To: meta

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;

^ permalink raw reply related	[flat|nested] only message in thread

only message in thread, other threads:[~2020-04-20  9:59 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-04-20  9:59 [PATCH] v2writable: drop SQLite-based multi_mid_q_new Eric Wong

Code repositories for project(s) associated with this public inbox

	https://80x24.org/public-inbox.git

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).