Rust for lowering AWS (and other cloud services) costs

This page summarizes the projects mentioned and recommended in the original post on /r/rust

InfluxDB - Power Real-Time Data Analytics at Scale
Get real-time insights from all types of time series data with InfluxDB. Ingest, query, and analyze billions of data points in real-time with unbounded cardinality.
www.influxdata.com
featured
SaaSHub - Software Alternatives and Reviews
SaaSHub helps you find the best software and product alternatives
www.saashub.com
featured
  • regex

    An implementation of regular expressions for Rust. This implementation uses finite automata and guarantees linear time matching on all inputs.

  • For our company, Rust is a solid fit for our problem. We ingest terabytes of logs per day from customers, and we need to perform fast full-text search on a lot of data in parallel using many threads. Various string search crates in Rust, like aho-corasick and regex, are highly optimized and leverage SIMD instructions. (Thank you Andrew Gallant, Alex Crichton, and others for these amazing libraries!)

  • aho-corasick

    A fast implementation of Aho-Corasick in Rust.

  • The SIMD "Teddy" algorithm in aho-corasick for multiple substring search is quite a bit more complicated and uses a lot of different vendor intrinsics. Things like alignr and shuffle, in addition to movemask. See this and this. In the latter link, search for _mm to see all of the addition intrinsics being used.

  • InfluxDB

    Power Real-Time Data Analytics at Scale. Get real-time insights from all types of time series data with InfluxDB. Ingest, query, and analyze billions of data points in real-time with unbounded cardinality.

    InfluxDB logo
NOTE: The number of mentions on this list indicates mentions on common posts plus user suggested alternatives. Hence, a higher number means a more popular project.

Suggest a related project

Related posts

  • Aho-Corasick Algorithm

    3 projects | news.ycombinator.com | 4 Mar 2024
  • CryptoFlow: Building a secure and scalable system with Axum and SvelteKit - Part 3

    3 projects | dev.to | 8 Jan 2024
  • how to get the index of substring in source string, support unicode in rust.

    1 project | /r/rust | 5 Nov 2023
  • Aho Corasick Algorithm For Efficient String Matching (Python & Golang Code Examples)

    1 project | /r/programming | 6 Oct 2023
  • Aho-corasick (and the regex crate) now uses SIMD on aarch64

    2 projects | news.ycombinator.com | 18 Sep 2023