faststr
is a string library that try to avoid the cost of clone.
In Rust, the String type is commonly used, but it has the following problems:
Therefore, we have created the FastStr
type. By sacrificing immutability, we can avoid the overhead of cloning Strings and better integrate with Rust's asynchronous, microservice, and network programming ecosystems.
FastStr
?FastStr
implements From
trait for various types, so you can easily migrate to FastStr
by replacing String
with FastStr
and adding .into()
.
For example, if your API is something like this:
rust
fn need_a_string(s: String)
You may change it to:
rust
fn need_a_string<S: Into<FastStr>>(s: S)
This will not be a break change for users.
serde
: Enable serde support.serde-unsafe
: Enable serde support with utf8 validation disabled.redis
: Enable redis support.redis-unsafe
: Enable redis support with utf8 validation disabled.See CONTRIBUTING.md for more information.
All contributions are welcomed!
faststr
is dual-licensed under the MIT license and the Apache License (Version 2.0).
See LICENSE-MIT and LICENSE-APACHE for details.
faststr
copied and used some code from smol_str
, which is also licensed under the MIT license and the Apache License (Version 2.0).
We really appreciate the work of smol_str
team.
Feishu: Scan the QR code below with Feishu or click this link to join our CloudWeGo Volo user group.