X-Git-Url: http://www.git.stargrave.org/?a=blobdiff_plain;f=TODO;h=5abef185e3f7a9a4fbd69fe91d9d9437ef189f9f;hb=dde1b083571ed893cbb1990f01f9e11ed804cba5;hp=9f58342f3b457dfa369b1bdf0f86813c9d65d789;hpb=4b82e287358c9cd858456798c7f09881d2d274aa;p=public-inbox.git diff --git a/TODO b/TODO index 9f58342f..5abef185 100644 --- a/TODO +++ b/TODO @@ -5,7 +5,7 @@ performance, ease-of-setup, installation, maintainability, etc all need to be considered for everything we introduce) * general performance improvements, but without relying on - XS or compiled code any more than we currently do. + XS or pre-built modules any more than we currently do. * mailmap support (same as git) for remapping expired email addresses @@ -101,10 +101,25 @@ all need to be considered for everything we introduce) * imperfect scraper importers for obfuscated list archives (e.g. obfuscated Mailman stuff, Google Groups, etc...) -* support hooks, since low-level git-fast-import does not run them - https://public-inbox.org/meta/20190405174329.GA21472@chatter.qube.local/ - (note: may not be needed since we do grokmirror manifest.js.gz, now) - * consider using HTTP::Date instead of Date::Parse, since we need the former is capable of parsing RFC822-ish dates, used by Plack, and the latter is missing from OpenBSD and maybe other distros. + +* improve performance and avoid head-of-line blocking on slow storage + +* share "git cat-file --batch" processes across inboxes to avoid + bumping into /proc/sys/fs/pipe-user-pages-* limits + +* make "git cat-file --batch" detect unlinked packfiles so we don't + have to restart processes (very long-term) + +* support searching based on `git-patch-id --stable` to improve + bidirectional mapping of commits <=> emails + +* linter to check validity of config file + +* linter option and WWW endpoint to graph relationships and flows + between inboxes, addresses maildirs, coderepos, etc... + +* pygments support - via Python script similar to `git cat-file --batch' + to avoid startup penalty. pygments.rb (Ruby) can be inspiration, too.