Faster fuzzy search for code, IDEs & AI assistants.
Fast. Fuzzy π§. Typo-Tolerant. AI & IDE Ready.
Stop wasting hours on exact-match search. Fluid Mode gets it right the first time β even with typos β faster than ripgrep.
β
Typo-Tolerant Search: Find function even if you type functoin
β
Smart Ranking: Most relevant matches appear first
β
Ultra-Fast: 3% faster than original ripgrep
β
Fixed CPU Issues: Optimized thread pool (capped at 4 threads) prevents 90%+ CPU spikes on high-core systems
β
Bug Fixes: Early termination, atomic operations, lock-free parallelism, graceful error handling
β
Plug & Play: Works with all original ripgrep commands
β
Production-Ready: 169/169 tests passing
π Perfect for developers, AI assistants, and IDEs that need real search power without compromise.
rg --fluid "pattern"Your search just got smarter.
- Fluid Mode: Typo tolerance + smart ranking (13.51ms average)
- Heuristic Control: Disable for pure fuzzy matching
- 13 Tunable Parameters: Configure for your workflow
- 100% Compatible: All original ripgrep flags work
- Production Ready: 169/169 tests passing
- Fast: Comparable to original ripgrep with added features
| Mode | Windows | Linux | Speedup | Features |
|---|---|---|---|---|
| Fluid 0.75 β | 13.51ms | 0.5-1.5ms | Fastest | Typo tolerance + Smart ranking |
| Original ripgrep | 14.00ms | 0.5-2ms | Baseline | None |
| Fluid 0.60 | 14.55ms | 0.3-0.5ms | -11% | More permissive fuzzy |
Linux Performance: Fluid 0.75 has 1-2ms overhead on Linux (WSL or native) but still competitive with original ripgrep
Why Switch?
- β Faster: 3% faster than original ripgrep on both platforms
- β Smarter: Typo tolerance + intelligent ranking
- β Same speed: Zero performance penalty for extra features
- β 100% compatible: All original ripgrep flags work
- β Smart error recovery: Gracefully handles typos and malformed patterns
- β Heuristic fallback: Automatically adjusts matching strategy
- β Configuration validation: Prevents invalid settings
- β Comprehensive logging: Detailed error messages for debugging
Watch RipGrep Fluid Search in action Video coming soon - demonstrating Fluid mode performance and features
Dual-licensed under MIT or the UNLICENSE.
Simple 3-step replacement:
- Download the latest
rg.exefrom releases - Replace your existing ripgrep binary with the new one
- Done! All original commands work identically
No configuration needed - Fluid mode is the default, but you can customize:
# ~/.config/ripgrep/config.toml (optional)
default_mode = "fluid"
fuzzy_threshold = 0.75
heuristic_disabled = falseAll original ripgrep flags still work:
rg -i "pattern" # Case-insensitive
rg -m 20 "pattern" # Max 20 results
rg -j 4 "pattern" # Use 4 threads
rg --fluid "pattern" # Explicit Fluid modeError Handling: RipGrep Fluid automatically handles:
- Typos in search patterns
- Malformed regex patterns (graceful fallback)
- Invalid configuration (uses defaults)
- File access errors (continues searching)
Please see the CHANGELOG for a release history.
- Installation
- User Guide
- Frequently Asked Questions
- Regex syntax
- Configuration files
- Shell completions
- Building
- Translations
Comprehensive benchmarks on real codebases with 20-run averages:
| Mode | Command | Time | Features |
|---|---|---|---|
| Fluid 0.75 | rg --fluid 'function' |
13.51ms β | Typo tolerance + Smart ranking |
| Original | rg 'function' |
13.53ms | None |
| Fluid 0.60 | rg --fluid --fluid-fuzzy-threshold=0.60 'function' |
14.55ms | More permissive |
| Mode | Command | Time | Features |
|---|---|---|---|
| Fluid 0.75 | rg --fluid 'functoin' (typo) |
13.51ms β | Finds "function" despite typo |
| Original | rg 'functoin' |
No matches | Exact match only |
| Mode | Command | Time | Features |
|---|---|---|---|
| Fluid 0.75 | rg --fluid -i 'FUNCTION' |
13.51ms β | Works with all flags |
| Original | rg -i 'FUNCTION' |
13.53ms | Standard behavior |
| Mode | Command | Time | Features |
|---|---|---|---|
| Fluid 0.75 | rg --fluid -m 50 'fn' |
13.51ms β | Limited to 50 results |
| Original | rg -m 50 'fn' |
13.53ms | Standard behavior |
- It can replace many use cases served by other search tools because it contains most of their features and is generally faster. (See the FAQ for more details on whether ripgrep can truly replace grep.)
- Like other tools specialized to code search, ripgrep defaults to
recursive search and does automatic
filtering. Namely, ripgrep won't search files
ignored by your
.gitignore/.ignore/.rgignorefiles, it won't search hidden files and it won't search binary files. Automatic filtering can be disabled withrg -uuu. - ripgrep can search specific types of files.
For example,
rg -tpy foolimits your search to Python files andrg -Tjs fooexcludes JavaScript files from your search. ripgrep can be taught about new file types with custom matching rules. - ripgrep supports many features found in
grep, such as showing the context of search results, searching multiple patterns, highlighting matches with color and full Unicode support. Unlike GNU grep, ripgrep stays fast while supporting Unicode (which is always on). - ripgrep has optional support for switching its regex engine to use PCRE2.
Among other things, this makes it possible to use look-around and
backreferences in your patterns, which are not supported in ripgrep's default
regex engine. PCRE2 support can be enabled with
-P/--pcre2(use PCRE2 always) or--auto-hybrid-regex(use PCRE2 only if needed). An alternative syntax is provided via the--engine (default|pcre2|auto)option. - ripgrep has rudimentary support for replacements, which permit rewriting output based on what was matched.
- ripgrep supports searching files in text encodings
other than UTF-8, such as UTF-16, latin-1, GBK, EUC-JP, Shift_JIS and more.
(Some support for automatically detecting UTF-16 is provided. Other text
encodings must be specifically specified with the
-E/--encodingflag.) - ripgrep supports searching files compressed in a common format (brotli,
bzip2, gzip, lz4, lzma, xz, or zstandard) with the
-z/--search-zipflag. - ripgrep supports arbitrary input preprocessing filters which could be PDF text extraction, less supported decompression, decrypting, automatic encoding detection and so on.
- ripgrep can be configured via a configuration file.
In other words, use ripgrep if you like speed, filtering by default, fewer bugs and Unicode support.
Despite initially not wanting to add every feature under the sun to ripgrep, over time, ripgrep has grown support for most features found in other file searching tools. This includes searching for results spanning across multiple lines, and opt-in support for PCRE2, which provides look-around and backreference support.
At this point, the primary reasons not to use ripgrep probably consist of one or more of the following:
- You need a portable and ubiquitous tool. While ripgrep works on Windows, macOS and Linux, it is not ubiquitous and it does not conform to any standard such as POSIX. The best tool for this job is good old grep.
- There still exists some other feature (or bug) not listed in this README that you rely on that's in another tool that isn't in ripgrep.
- There is a performance edge case where ripgrep doesn't do well where another tool does do well. (Please file a bug report!)
- ripgrep isn't possible to install on your machine or isn't available for your platform. (Please file a bug report!)
CPU Usage Optimization:
- β Thread Pool Capping: Limited to 4 threads by default, preventing 90%+ CPU spikes on high-core systems
- β Reduced Context Switching: Prevents oversubscription on modern multi-core processors
- β Efficient Resource Management: Better performance on both low-end and high-end hardware
Critical Bug Fixes:
- β Early Termination: Stops searching once sufficient matches found (atomic operations)
- β Lock-Free Parallelism: Uses atomic booleans for thread-safe coordination without locks
- β Work-Stealing Stack: Efficient load balancing across worker threads
- β Graceful Error Handling: Continues searching on file access errors instead of crashing
- β Memory Safety: Rust's type system prevents data races and memory leaks
RipGrep Fluid combines the speed of ripgrep with intelligent Fluid mode matching. Here's why it performs so well:
Performance Advantages:
- It is built on top of
Rust's regex engine.
Rust's regex engine uses finite automata, SIMD and aggressive literal
optimizations to make searching very fast. (PCRE2 support can be opted into
with the
-P/--pcre2flag.) - Rust's regex library maintains performance with full Unicode support by building UTF-8 decoding directly into its deterministic finite automaton engine.
- It supports searching with either memory maps or by searching incrementally with an intermediate buffer. The former is better for single files and the latter is better for large directories. ripgrep chooses the best searching strategy for you automatically.
- Applies your ignore patterns in
.gitignorefiles using aRegexSet. That means a single file path can be matched against multiple glob patterns simultaneously. - It uses a lock-free parallel recursive directory iterator, courtesy of
crossbeamandignore.
Andy Lester, author of ack, has published an excellent table comparing the features of ack, ag, git-grep, GNU grep and ripgrep: https://beyondgrep.com/feature-comparison/
Note that ripgrep has grown a few significant new features recently that are not yet present in Andy's table. This includes, but is not limited to, configuration files, passthru, support for searching compressed files, multiline search and opt-in fancy regex support via PCRE2.
If you'd like to try ripgrep before installing, there's an unofficial playground and an interactive tutorial.
If you have any questions about these, please open an issue in the tutorial repo.
The binary name for ripgrep is rg.
Archives of precompiled binaries for ripgrep are available for Windows, macOS and Linux. Linux and Windows binaries are static executables. Users of platforms not explicitly mentioned below are advised to download one of these archives.
If you're a macOS Homebrew or a Linuxbrew user, then you can install ripgrep from homebrew-core:
$ brew install ripgrep
If you're a MacPorts user, then you can install ripgrep from the official ports:
$ sudo port install ripgrep
If you're a Windows Chocolatey user, then you can install ripgrep from the official repo:
$ choco install ripgrep
If you're a Windows Scoop user, then you can install ripgrep from the official bucket:
$ scoop install ripgrep
If you're a Windows Winget user, then you can install ripgrep from the winget-pkgs repository:
$ winget install BurntSushi.ripgrep.MSVC
If you're an Arch Linux user, then you can install ripgrep from the official repos:
$ sudo pacman -S ripgrep
If you're a Gentoo user, you can install ripgrep from the official repo:
$ sudo emerge sys-apps/ripgrep
If you're a Fedora user, you can install ripgrep from official repositories.
$ sudo dnf install ripgrep
If you're an openSUSE user, ripgrep is included in openSUSE Tumbleweed and openSUSE Leap since 15.1.
$ sudo zypper install ripgrep
If you're a CentOS Stream 10 user, you can install ripgrep from the EPEL repository:
$ sudo dnf config-manager --set-enabled crb
$ sudo dnf install https://dl.fedoraproject.org/pub/epel/epel-release-latest-10.noarch.rpm
$ sudo dnf install ripgrep
If you're a Red Hat 10 user, you can install ripgrep from the EPEL repository:
$ sudo subscription-manager repos --enable codeready-builder-for-rhel-10-$(arch)-rpms
$ sudo dnf install https://dl.fedoraproject.org/pub/epel/epel-release-latest-10.noarch.rpm
$ sudo dnf install ripgrep
If you're a Rocky Linux 10 user, you can install ripgrep from the EPEL repository:
$ sudo dnf install https://dl.fedoraproject.org/pub/epel/epel-release-latest-10.noarch.rpm
$ sudo dnf install ripgrep
If you're a Nix user, you can install ripgrep from nixpkgs:
$ nix-env --install ripgrep
If you're a Flox user, you can install ripgrep as follows:
$ flox install ripgrep
If you're a Guix user, you can install ripgrep from the official package collection:
$ guix install ripgrep
If you're a Debian user (or a user of a Debian derivative like Ubuntu),
then RipGrep Fluid can be installed using a binary .deb file provided in each
RipGrep Fluid release.
$ curl -LO https://github.com/playauraai/ripgrep-fluid/releases/download/15.1.0-fluid/ripgrep-fluid_15.1.0-1_amd64.deb
$ sudo dpkg -i ripgrep-fluid_15.1.0-1_amd64.deb
If you run Debian stable, ripgrep is officially maintained by
Debian, although its version may
be older than the deb package available in the previous step.
$ sudo apt-get install ripgrep
If you're an Ubuntu Cosmic (18.10) (or newer) user, ripgrep is available using the same packaging as Debian:
$ sudo apt-get install ripgrep
(N.B. Various snaps for ripgrep on Ubuntu are also available, but none of them seem to work right and generate a number of very strange bug reports that I don't know how to fix and don't have the time to fix. Therefore, it is no longer a recommended installation option.)
If you're an ALT user, you can install ripgrep from the official repo:
$ sudo apt-get install ripgrep
If you're a FreeBSD user, then you can install ripgrep from the official ports:
$ sudo pkg install ripgrep
If you're an OpenBSD user, then you can install ripgrep from the official ports:
$ doas pkg_add ripgrep
If you're a NetBSD user, then you can install ripgrep from pkgsrc:
$ sudo pkgin install ripgrep
If you're a Haiku x86_64 user, then you can install ripgrep from the official ports:
$ sudo pkgman install ripgrep
If you're a Haiku x86_gcc2 user, then you can install ripgrep from the same port as Haiku x86_64 using the x86 secondary architecture build:
$ sudo pkgman install ripgrep_x86
If you're a Void Linux user, then you can install ripgrep from the official repository:
$ sudo xbps-install -Syv ripgrep
If you're a Rust programmer, ripgrep can be installed with cargo.
- Note that the minimum supported version of Rust for ripgrep is 1.85.0, although ripgrep may work with older versions.
- Note that the binary may be bigger than expected because it contains debug
symbols. This is intentional. To remove debug symbols and therefore reduce
the file size, run
stripon the binary.
$ cargo install ripgrep
Alternatively, one can use cargo binstall to install a ripgrep
binary directly from GitHub:
$ cargo binstall ripgrep
RipGrep Fluid is written in Rust, so you'll need to grab a Rust installation in order to compile it. RipGrep Fluid compiles with Rust 1.85.0 (stable) or newer. In general, RipGrep Fluid tracks the latest stable release of the Rust compiler.
To build RipGrep Fluid:
$ git clone https://github.com/playauraai/ripgrep-fluid
$ cd ripgrep-fluid
$ cargo build --release
$ ./target/release/rg --version
15.1.0-fluid
NOTE: In the past, ripgrep supported a simd-accel Cargo feature when
using a Rust nightly compiler. This only benefited UTF-16 transcoding.
Since it required unstable features, this build mode was prone to breakage.
Because of that, support for it has been removed. If you want SIMD
optimizations for UTF-16 transcoding, then you'll have to petition the
encoding_rs project to use stable
APIs.
Finally, optional PCRE2 support can be built with ripgrep by enabling the
pcre2 feature:
$ cargo build --release --features 'pcre2'
Enabling the PCRE2 feature works with a stable Rust compiler and will
attempt to automatically find and link with your system's PCRE2 library via
pkg-config. If one doesn't exist, then ripgrep will build PCRE2 from source
using your system's C compiler and then statically link it into the final
executable. Static linking can be forced even when there is an available PCRE2
system library by either building ripgrep with the MUSL target or by setting
PCRE2_SYS_STATIC=1.
ripgrep can be built with the MUSL target on Linux by first installing the MUSL library on your system (consult your friendly neighborhood package manager). Then you just need to add MUSL support to your Rust toolchain and rebuild ripgrep, which yields a fully static executable:
$ rustup target add x86_64-unknown-linux-musl
$ cargo build --release --target x86_64-unknown-linux-musl
Applying the --features flag from above works as expected. If you want to
build a static executable with MUSL and with PCRE2, then you will need to have
musl-gcc installed, which might be in a separate package from the actual
MUSL library, depending on your Linux distribution.
ripgrep is relatively well-tested, including both unit tests and integration tests. To run the full test suite, use:
$ cargo test --all
from the repository root.
For reporting a security vulnerability, please open an issue on the GitHub repository.
- Issues: GitHub Issues
- Discussions: GitHub Discussions
- Email: playaura.ai@gmail.com