Trigrep – indexed regex search in Rust with CLI
1–5 of 5 posts
Re: Trigrep – indexed regex search in Rust with CLI
#2based on algorithm from cursor team: https://cursor.com/blog/fast-regex-search
Re: Trigrep – indexed regex search in Rust with CLI
#3Indexed 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
now it kind of sounds the same as other tools (for ppl like me who dont by heart know all these algos)
Re: Trigrep – indexed regex search in Rust with CLI
#4Indexed 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)
Will compare grep vs rg vs trigrep against git source code.
Re: Trigrep – indexed regex search in Rust with CLI
#5Indexed 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)
https://github.com/PythonicNinja/trigrep/commit/ca64fd81a6d8...