summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndrew Gallant <jamslam@gmail.com>2016-09-18 18:34:09 -0400
committerAndrew Gallant <jamslam@gmail.com>2016-09-18 18:34:09 -0400
commitbf56b3bb8e9019f766dfdab115ec68916bd3533a (patch)
tree74fa135cae36e00162168a8fafd03d4d688f08e7
parent9299d84d417826a3bb1fd27ebc935ad30cdf47b1 (diff)
clarify
-rw-r--r--README-NEW.md3
1 files changed, 3 insertions, 0 deletions
diff --git a/README-NEW.md b/README-NEW.md
index ec7aa431..111d7af0 100644
--- a/README-NEW.md
+++ b/README-NEW.md
@@ -67,6 +67,9 @@ Summarizing, `ripgrep` is fast because:
[Rust's regex engine](https://github.com/rust-lang-nursery/regex).
Rust's regex engine uses finite automata, SIMD and aggressive literal
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
with an intermediate buffer. The former is better for single files and the
latter is better for large directories. `ripgrep` chooses the best searching