ids_service 0.1.4

Library that allows to generate unique Ids.
Documentation

ids_service

Library that allows generating unique ids. It loads ids in cache if the cache reaches a lower limit then a fill thread is started. If the cache is empty (the number of requests is too high) an id is calculated on the fly. This will slow down obtaining the id but there is no error when the cache is empty. To generate unique ids the library uses a random number generator and a SHA256 hash for the id as String type. For type u128 it's from the random number generator.

Quick Start

extern crate ids_service;
use ids_service::ids::*;

let mut z: IdsService<String> = IdsService::new( ConfigIdsService::default());
println!("Get an id as String:"); z.get_id();

// Use iterator
for z in z.iter() {
     println!("Id: {}",z);
}

Run example

cargo run --example main

Releases

  • 0.1.4 Add two helper function to create on fly id create_id_as_u128 and create_id_as_string
  • 0.1.0 to 0.1.3 Non functional, some adaptation for crates.io and bitbucket pipelines