Skip to content

a program that has several implementations of a regex matching sanitizer that produces a report with the number of words in a file in parallel. It utterly outclasses boostCPPreader. It accomplishes this with zero cost abstraction and the borrow checker.

Notifications You must be signed in to change notification settings

wsb1994/rustregex

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Intro:

This is a recreation of the project boostCPPReader project, with the extended regex features and more involved paralellization than that program.

It's important to note that this project is much faster than boostCPPreader Even considering it sorts the results showcasing the benefits rust has over C++.

In the C++ version it explicitly has a high level blocking function, which I am not aware of the inner workings of, based around the boost library. This has a cost associated with it in C++ and does in fact have overhead and runtime.

This means it can only be as fast as the slowest file & additionally is impacted by the overhead in the main thread to allocate the pool.

in the Rust Version, there is no high level resource allocation to generate the pool. It's 0 cost abstraction. There is some fancy work that goes into cross-beam to make this happen. It is in fact, pretty cool.

Rust also shares, in this instance, the synchronous limitation, but only in my own implementation. Rust actually supports fully asynchronous programming with async-std and Tokio, this would utterly destroy both implementations of this project by taking advantage of asynchronous processing and the ability to process while waiting for the ability to write to disk, etc, instead of waiting.

About

a program that has several implementations of a regex matching sanitizer that produces a report with the number of words in a file in parallel. It utterly outclasses boostCPPreader. It accomplishes this with zero cost abstraction and the borrow checker.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages