about summary refs log tree commit homepage
path: root/lib/PublicInbox/LeiStore.pm
diff options
context:
space:
mode:
authorEric Wong <e@80x24.org>2020-12-15 09:14:31 +0000
committerEric Wong <e@80x24.org>2020-12-19 09:32:08 +0000
commit04115815acef798c4330a76df9c1cb3d3542c9f9 (patch)
treed106b2f2075da7957e9741ca453107d1a7a4a9fa /lib/PublicInbox/LeiStore.pm
parent504774acd5236653cdeafb536be95fbfb147258f (diff)
downloadpublic-inbox-04115815acef798c4330a76df9c1cb3d3542c9f9.tar.gz
There's a bunch of work in here as the foundations are being
fleshed out.  One of the UI/UX is to make it easy to keep
built-in help and shell completions consistent
Diffstat (limited to 'lib/PublicInbox/LeiStore.pm')
-rw-r--r--lib/PublicInbox/LeiStore.pm7
1 files changed, 6 insertions, 1 deletions
diff --git a/lib/PublicInbox/LeiStore.pm b/lib/PublicInbox/LeiStore.pm
index 56f668b8..b5b49efb 100644
--- a/lib/PublicInbox/LeiStore.pm
+++ b/lib/PublicInbox/LeiStore.pm
@@ -22,7 +22,12 @@ use PublicInbox::LeiSearch;
 sub new {
         my (undef, $dir, $opt) = @_;
         my $eidx = PublicInbox::ExtSearchIdx->new($dir, $opt);
-        bless { priv_eidx => $eidx }, __PACKAGE__;
+        my $self = bless { priv_eidx => $eidx }, __PACKAGE__;
+        if ($opt->{creat}) {
+                PublicInbox::SearchIdx::load_xapian_writable();
+                eidx_init($self);
+        }
+        $self;
 }
 
 sub git { $_[0]->{priv_eidx}->git } # read-only