#fifo-queue #queue #fifo #io #file-io

queue-file

queue-file is a lightning-fast, transactional, file-based FIFO

16 stable releases

1.4.10 Mar 17, 2023
1.4.8 Feb 14, 2023
1.4.6 Jul 4, 2022
1.3.0 Feb 22, 2022
1.0.2 Jun 27, 2019

#126 in Data structures

Download history 2230/week @ 2024-07-31 1544/week @ 2024-08-07 2264/week @ 2024-08-14 1949/week @ 2024-08-21 2258/week @ 2024-08-28 1209/week @ 2024-09-04 1296/week @ 2024-09-11 929/week @ 2024-09-18 981/week @ 2024-09-25 1242/week @ 2024-10-02 1925/week @ 2024-10-09 672/week @ 2024-10-16 1239/week @ 2024-10-23 1214/week @ 2024-10-30 1438/week @ 2024-11-06 1883/week @ 2024-11-13

5,933 downloads per month
Used in 2 crates

Apache-2.0

49KB
930 lines

queue-file

Crate API License Windows Build Status

queue-file is a lightning-fast, transactional, file-based FIFO.

Addition and removal of an element from the queue is an O(1) operation and is atomic. Writes are synchronous by default; data will be written to disk before an operation returns.

queue-file crate is a feature complete and binary compatible port of QueueFile class from Tape2 by Square, Inc. Check the original project here.

Documentation

Usage

To use queue-file, first add this to your Cargo.toml:

[dependencies]
queue-file = "1"

Example

use queue_file::QueueFile;

fn main() {
    let mut qf = QueueFile::open("example.qf")
        .expect("cannot open queue file");

    qf.add("ELEMENT #1".as_bytes()).expect("add failed");
    qf.add("ELEMENT #2".as_bytes()).expect("add failed");
    qf.add("ELEMENT #3".as_bytes()).expect("add failed");

    qf.remove().expect("remove failed");

    for (index, elem) in qf.iter().enumerate() {
        println!(
            "{}: {} bytes -> {}",
            index,
            elem.len(),
            std::str::from_utf8(&elem).unwrap_or("<invalid>")
        );
    }

    qf.clear().expect("clear failed");
}

MSRV

Current MSRV is 1.58.1

License

This project is licensed under the Apache 2.0 license.

Dependencies

~2MB
~41K SLoC