mirror of
https://github.com/BurntSushi/ripgrep.git
synced 2025-05-19 09:40:22 -07:00
clarify
This commit is contained in:
parent
9299d84d41
commit
bf56b3bb8e
@ -67,6 +67,9 @@ Summarizing, `ripgrep` is fast because:
|
|||||||
[Rust's regex engine](https://github.com/rust-lang-nursery/regex).
|
[Rust's regex engine](https://github.com/rust-lang-nursery/regex).
|
||||||
Rust's regex engine uses finite automata, SIMD and aggressive literal
|
Rust's regex engine uses finite automata, SIMD and aggressive literal
|
||||||
optimizations to make searching very fast.
|
optimizations to make searching very fast.
|
||||||
|
* 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
|
* It supports searching with either memory maps or by searching incrementally
|
||||||
with an intermediate buffer. The former is better for single files and the
|
with an intermediate buffer. The former is better for single files and the
|
||||||
latter is better for large directories. `ripgrep` chooses the best searching
|
latter is better for large directories. `ripgrep` chooses the best searching
|
||||||
|
Loading…
x
Reference in New Issue
Block a user