emacs-bug-tracker
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

bug#71179: closed ([PATCH] In rgrep, check matching files before excludi


From: GNU bug Tracking System
Subject: bug#71179: closed ([PATCH] In rgrep, check matching files before excluding files)
Date: Sun, 02 Jun 2024 10:48:01 +0000

Your message dated Sun, 2 Jun 2024 03:46:09 -0700
with message-id 
<CADwFkmn4WECjz_aTnzt1L27TA_jNB_fkF3++39_0Uu1JEDBN2w@mail.gmail.com>
and subject line Re: bug#71179: [PATCH] In rgrep, check matching files before 
excluding files
has caused the debbugs.gnu.org bug report #71179,
regarding [PATCH] In rgrep, check matching files before excluding files
to be marked as done.

(If you believe you have received this mail in error, please contact
help-debbugs@gnu.org.)


-- 
71179: https://debbugs.gnu.org/cgi/bugreport.cgi?bug=71179
GNU Bug Tracking System
Contact help-debbugs@gnu.org with problems
--- Begin Message --- Subject: [PATCH] In rgrep, check matching files before excluding files Date: Fri, 24 May 2024 16:14:39 -0400
Tags: patch


In rgrep, check matching files before excluding files

There are a lot of excluding globs, and checking them all is expensive.
The files glob (i.e. the glob for files we actually want) is usually
just one or two entries, so it's quite fast to check.

If find checks the files glob first and then the excluding glob, it has
to do much less checking (since the files glob will substantially narrow
down the set of files on its own), and find performance is much better.

In my benchmarking, this takes (rgrep "foo" "*.el" "~/src/emacs/trunk/")
from ~410ms to ~130ms.

When the files glob is "* .*", there's no benefit from this change,
since we still have to check every excluding glob anyway.  But there's
also no cost.

* lisp/progmodes/grep.el (rgrep-default-command): Move the
excluded files glob to part of the "files" argument.

In GNU Emacs 29.2.50 (build 1, x86_64-pc-linux-gnu, X toolkit, cairo
 version 1.15.12, Xaw scroll bars) of 2024-05-20 built on
 igm-qws-u22796a
Repository revision: 734740051bd377d24899d08d00ec8e1bb8e00e00
Repository branch: emacs-29
Windowing system distributor 'The X.Org Foundation', version 11.0.12011000
System Description: Rocky Linux 8.9 (Green Obsidian)

Configured using:
 'configure -C --with-x-toolkit=lucid --with-gif=ifavailable
 --with-native-compilation=aot'

Attachment: 0001-In-rgrep-check-matching-files-before-excluding-files.patch
Description: Text Data


--- End Message ---
--- Begin Message --- Subject: Re: bug#71179: [PATCH] In rgrep, check matching files before excluding files Date: Sun, 2 Jun 2024 03:46:09 -0700
Version: 30.1

Eli Zaretskii <eliz@gnu.org> writes:

> Thanks, this LGTM.

Same here, so pushed to master as commit b71fa27987d and closing the bug.

Thanks, Spencer.


--- End Message ---

reply via email to

[Prev in Thread] Current Thread [Next in Thread]