]> Sergey Matveev's repositories - public-inbox.git/commitdiff
feed: avoid unnecessary map loop in non-over path
authorEric Wong <e@80x24.org>
Thu, 4 Aug 2022 08:17:02 +0000 (08:17 +0000)
committerEric Wong <e@80x24.org>
Thu, 4 Aug 2022 20:09:35 +0000 (20:09 +0000)
We can bless objects while doing the initial insertion to avoid
extra the extra map iteration and temporary array(s).  Fewer ops
means memory savings for the likely case of ->over users, too.

lib/PublicInbox/Feed.pm

index b2219dad9955005c2cb97d0fe3d47b710d617837..ee579f6d9b329fdddc626cd9f50f52a2549f37ff 100644 (file)
@@ -1,10 +1,10 @@
-# Copyright (C) 2013-2021 all contributors <meta@public-inbox.org>
+# Copyright (C) all contributors <meta@public-inbox.org>
 # License: AGPL-3.0+ <https://www.gnu.org/licenses/agpl-3.0.txt>
 #
 # Used for generating Atom feeds for web-accessible mailing list archives.
 package PublicInbox::Feed;
 use strict;
-use warnings;
+use v5.10.1;
 use PublicInbox::View;
 use PublicInbox::WwwAtomStream;
 use PublicInbox::Smsg; # this loads w/o Search::Xapian
@@ -108,13 +108,13 @@ sub recent_msgs {
        my $last;
        my $last_commit;
        local $/ = "\n";
-       my @oids;
+       my @ret;
        while (defined(my $line = <$log>)) {
                if ($line =~ /$addmsg/o) {
                        my $add = $1;
                        next if $deleted{$add}; # optimization-only
-                       push @oids, $add;
-                       if (scalar(@oids) >= $max) {
+                       push(@ret, bless { blob => $add }, 'PublicInbox::Smsg');
+                       if (scalar(@ret) >= $max) {
                                $last = 1;
                                last;
                        }
@@ -136,8 +136,7 @@ sub recent_msgs {
        $last_commit and
                $ctx->{next_page} = qq[<a\nhref="?r=$last_commit"\nrel=next>] .
                                        'next (older)</a>';
-
-       [ map { bless {blob => $_ }, 'PublicInbox::Smsg' } @oids ];
+       \@ret;
 }
 
 1;