idx_sized

Crates.ioidx_sized
lib.rsidx_sized
version0.28.0
sourcesrc
created_at2022-09-17 02:16:10.352313
updated_at2023-05-09 13:55:51.004756
descriptionThis is a library for handling single-dimensional array data. It uses mmap and avltriee.
homepage
repositoryhttps://github.com/OdenShirataki/idx_sized
max_upload_size
id668028
size20,415
OdenShirataki (OdenShirataki)

documentation

README

idx_sized

Features

This is a library for handling single-dimensional array data. It uses mmap and avltriee.

The data that can be handled is limited to fixed-length data. (If you're dealing with variable length data, do better with generics.)

Array data is a balanced tree algorithm that iterates from the minimum value to the maximum value, but the inserted value is always added to the end of the file and stays in the same position all the time. In other words, sorting, searching, and obtaining values ​​by specifying rows can all be processed at high speed. Also, since I'm using mmap, when I update the value it's automatically saved to the file.

Usage

init

use idx_sized::IdxSized;

let mut idx=IdxSized::<i64>::new("hoge.idx").unwrap();

insert

idx.insert(100).unwrap();
idx.insert(300).unwrap();
idx.insert(100).unwrap();
idx.insert(150).unwrap();

update

idx.update(2, 50).unwrap();

delete

idx.delete(1).unwrap();

search

for i in idx.triee().iter() {
    println!("{}. {} : {}", i.index(), i.row(), i.value());
}

for row in idx.triee().iter_by(|v|v.cmp(&100)) {
    println!("{}. {} : {}", row.index(),row.row(), row.value());
}
for row in idx.triee().iter_by_value_from(&100) {
    println!("{}. {} : {}", row.index(),row.row(), row.value());
}
for row in idx.triee().iter_by_value_to(&200) {
    println!("{}. {} : {}", row.index(),row.row(), row.value());
}
for row in idx.triee().iter_by_value_from_to(&100, &200) {
    println!("{}. {} : {}", row.index(),row.row(), row.value());
}
Commit count: 109

cargo fmt