1 points | by PythonicNinja 7 hours ago ago
4 comments
Indexed regex search for large codebases, powered by trigram / sparse n‑gram indexes. A grep-like CLI that builds a local on-disk index, so searches stay fast even on huge monorepos.
based on algorithm from cursor team: https://cursor.com/blog/fast-regex-search
it might be nice to add some kind of comparison to other similar tools like ripgrep etc to see what the differences are in usage, performance etc.
now it kind of sounds the same as other tools (for ppl like me who dont by heart know all these algos)
added comparison:
https://github.com/PythonicNinja/trigrep/commit/ca64fd81a6d8...
Adding it right now.
Will compare grep vs rg vs trigrep against git source code.
Indexed regex search for large codebases, powered by trigram / sparse n‑gram indexes. A grep-like CLI that builds a local on-disk index, so searches stay fast even on huge monorepos.
based on algorithm from cursor team: https://cursor.com/blog/fast-regex-search
it might be nice to add some kind of comparison to other similar tools like ripgrep etc to see what the differences are in usage, performance etc.
now it kind of sounds the same as other tools (for ppl like me who dont by heart know all these algos)
added comparison:
https://github.com/PythonicNinja/trigrep/commit/ca64fd81a6d8...
Adding it right now.
Will compare grep vs rg vs trigrep against git source code.