GithubHelp home page GithubHelp logo

Optimization for directory-files about f.el HOT 4 OPEN

rejeep avatar rejeep commented on September 27, 2024 1
Optimization for directory-files

from f.el.

Comments (4)

alphapapa avatar alphapapa commented on September 27, 2024

@rejeep I rediscovered this in my notes, came here to repost it, and found that I already had. :) Here's another benchmark using bench-multi:

(defun f--collect-entries--tb (path recursive)
  (with-temp-buffer
    (let (result
          (entries
           (-reject
            (lambda (file)
              (or
               (equal (f-filename file) ".")
               (equal (f-filename file) "..")))
            (directory-files path t))))
      (cond (recursive
             (-map
              (lambda (entry)
                (if (f-file? entry)
                    (setq result (cons entry result))
                  (when (f-directory? entry)
                    (setq result (cons entry result))
                    (setq result (append result (f--collect-entries entry recursive))))))
              entries))
            (t (setq result entries)))
      result)))
#+BEGIN_SRC el
  (bench-multi :times 100
    :ensure-equal t
    :forms (("without temp buffer" (f--collect-entries "~/.emacs.d" nil))
            ("with temp buffer" (f--collect-entries--tb "~/.emacs.d" nil))))
#+END_SRC
Form x faster than next Total runtime # of GCs Total GC runtime
with temp buffer 1.66 0.087498083 0 0.0
without temp buffer slowest 0.14550272800000003 0 0.0

from f.el.

Phundrak avatar Phundrak commented on September 27, 2024

Hi, I can’t reproduce these results, in fact using a temporary buffer makes the function slower. This is what I get when I execute the code you shared in your first comment:

without temp buffer 0.031098385 0 0.0
with temp buffer 0.033553346 0 0.0

Can you still reproduce your results?

from f.el.

alphapapa avatar alphapapa commented on September 27, 2024

Can you still reproduce your results?

I don't know, that was nearly four years ago, and Emacs has had a few releases since then. What version did you test on? Were you using emacs -q?

from f.el.

Phundrak avatar Phundrak commented on September 27, 2024

from f.el.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.