libskry_r VS smartstring

Compare libskry_r vs smartstring and see what are their differences.

Our great sponsors
  • InfluxDB - Power Real-Time Data Analytics at Scale
  • WorkOS - The modern identity platform for B2B SaaS
  • SaaSHub - Software Alternatives and Reviews
libskry_r smartstring
2 7
16 481
- -
0.0 0.0
over 3 years ago 7 months ago
Rust Rust
MIT License Mozilla Public License 2.0
The number of mentions indicates the total number of mentions that we've tracked plus the number of user suggested alternatives.
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.

libskry_r

Posts with mentions or reviews of libskry_r. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2024-02-28.
  • Rewrite the VP9 codec library in Rust
    5 projects | news.ycombinator.com | 28 Feb 2024
    As already mentioned, bounds checks won't necessarily cause that much overhead. When I rewrote my small image processing library from C to Rust ([1]), I only had to use unchecked array access in one hot loop to get overall performance equivalent to C code.

    [1] https://github.com/GreatAttractor/libskry_r

  • Speed of Rust vs. C
    17 projects | news.ycombinator.com | 12 Mar 2021
    To practise Rust, I rewrote my small C99 library in it [1]. Performance is more or less the same, I only had to use unchecked array access in one small hot loop (details in README.md). I haven't ported multithreading yet, but I expect Rust's Rayon parallel iterators will likewise be comparable to OpenMP.

    [1] https://github.com/GreatAttractor/libskry_r

smartstring

Posts with mentions or reviews of smartstring. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2022-08-14.
  • Does using "String" instead of "&str" a lot results in unoptimised code?
    3 projects | /r/rust | 14 Aug 2022
    Your use case sounds like it will involve a lot of small strings that use a subset of UTF-8. If you’re concerned about performance, you could look into something like smartstring. Sixbit also looks interesting, but it looks like it won’t give you any more characters and it’d probably require additional computation to do the conversion (and they’d have to be converted back out).
  • Rust Is Hard, Or: The Misery of Mainstream Programming
    15 projects | news.ycombinator.com | 2 Jun 2022
    > If you have a long-running async function, then pass parameters by value! If you have a polymorphic async function, then return your result in a Box.

    I've taken to making heavy use of the smallvec and smartstring crates for this. Most lists and strings are small in practice. Using smallvec / smartstring lets you keep most clone() calls allocation-free. This in turn lets you use owned objects, which are easier to reason about - for you and the borrow checker. And you keep a lot of the performance of just passing around references.

    I tried to use async rust a couple of years ago, and fell on my face in the process. Most of my rust at the moment is designed to compile to wasm - and then I'm leaning on nodejs for networking and IO. Writing async networked code is oh so much easier to reason about in javascript. When GAT, TAIT and some other language features to fix async land I'll muster up the courage to make another attempt. But rust's progress at fixing these problems feels painfully slow.

    https://crates.io/crates/smallvec / https://crates.io/crates/smartstring

  • GitHub - epage/string-benchmarks-rs: Comparison of Rust string types
    3 projects | /r/rust | 25 Mar 2022
    Just to point out, smartstring no longer assumes String memory layout. From the changelog:
  • Why is str not just [char]?
    2 projects | /r/rust | 25 Oct 2021
    There's some really good crates that implement SSO floating around - eg, SmartString. But I agree - its a pity they're needed. Swift built this into the core string type in the language. I think that was the right call.
  • Announcing `compact_str`! A super memory efficient immutable string that is transparently stored on the stack, when possible
    5 projects | /r/rust | 19 Sep 2021
    Comparatively: * SmolStr can inline up to 22 bytes but does not adjust down for 32-bit architectures, meaning it's potentially wasting memory on 32-bit archs. Similarly though it's immutable and Clone is O(1) * SmartString can inline up to 23 bytes, but it's mutable and Clone is O(n). Also this crate makes assumptions about the memory layout of a String, which in theory should be fine, but is a slight caveat.
  • Version 0.19.15 released.
    1 project | /r/Rhai | 31 Mar 2021
    SmartString is used to store identifiers (which tends to be short, fewer than 23 characters, and ASCII-based) because they can usually be stored inline. Map keys now also use SmartString.
  • Speed of Rust vs. C
    17 projects | news.ycombinator.com | 12 Mar 2021
    I’ve been using smartstrings, which is both excellent and maintained. https://github.com/bodil/smartstring

What are some alternatives?

When comparing libskry_r and smartstring you can also consider the following projects:

redgrep - ♥ Janusz Brzozowski

smol_str

fst - Represent large sets and maps compactly with finite state transducers.

compact_str - A memory efficient string type that can store up to 24* bytes on the stack

rust - Rust for the xtensa architecture. Built in targets for the ESP32 and ESP8266

min-sized-rust - 🦀 How to minimize Rust binary size 📦

barre - A Regular Expression Library and CFG parser for Rust using Brzozski Derivatives

bitter - Extract bits from a byte slice

gccrs - GCC Front-End for Rust

ixy-languages - A high-speed network driver written in C, Rust, C++, Go, C#, Java, OCaml, Haskell, Swift, Javascript, and Python