Most efficient way to write and read large amounts of u64s?

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
  • ash

    Vulkan bindings for Rust

  • // it is undefined behavior to call read_exact on un-initialized, https://doc.rust-lang.org/std/io/trait.Read.html#tymethod.read // see also https://github.com/MaikKlein/ash/issues/354#issue-781730580 let mut buffer = vec![0u64, length]; unsafe { // transmute u64 to bytes. let slice = std::slice::from_raw_parts_mut( buffer.as_mut_ptr() as *mut u8, length * std::mem::size_of::(), ); reader.read_exact(slice)?; } if is_native_little_endian() != file_is_little_endian { swap(&mut buffer, file_is_little_endian) }

  • 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

  • Meta Releases Intermediate Graphics Library

    12 projects | news.ycombinator.com | 7 Jul 2023
  • Going beyond build.rs: introducing cargo-px

    2 projects | /r/rust | 2 May 2023
  • A new picture of my ray tracing voxel engine (Vulkan/RTX/Rust)

    1 project | /r/VoxelGameDev | 30 Mar 2023
  • We're still not game, but there has been progress. A progress report.

    7 projects | /r/rust_gamedev | 17 Mar 2023
  • Is C++ still the language when entering 3D programming in 2023?

    6 projects | /r/gamedev | 1 Feb 2023