Struct xorfilter::Xor8[][src]

pub struct Xor8<H = BuildHasherDefault> where
    H: BuildHasher
{ pub hash_builder: H, pub seed: u64, pub block_length: u32, pub finger_prints: Vec<u8>, // some fields omitted }
Expand description

Type Xor8 is probabilistic data-structure to test membership of an element in a set.

This implementation has a false positive rate of about 0.3% and a memory usage of less than 9 bits per entry for sizeable sets.

Xor8 is parametrized over type H which is expected to implement BuildHasher trait, like types RandomState and BuildHasherDefault. When not supplied, BuildHasherDefault is used as the default hash-builder.

If RandomState is used as BuildHasher, std has got this to say

A particular instance RandomState will create the same instances of Hasher, but the hashers created by two different RandomState instances are unlikely to produce the same result for the same values._

If DefaultHasher is used as BuildHasher, std has got this to say,

The internal algorithm is not specified, and so its hashes should not be relied upon over releases.

The default type for parameter H might change when a reliable and commonly used BuildHasher type is available.

Fields

hash_builder: Hseed: u64block_length: u32finger_prints: Vec<u8>

Implementations

New Xor8 instance initialized with DefaultHasher.

New Xor8 instance initialized with supplied hasher.

Insert 64-bit digest of a single key. Digest for the key shall be generated using the default-hasher or via hasher supplied via Xor8::with_hasher method.

Populate with 64-bit digests for a collection of keys of type K. Digest for key shall be generated using the default-hasher or via hasher supplied via Xor8::with_hasher method.

Populate with pre-compute collection of 64-bit digests.

Build bitmap for keys that where previously inserted using Xor8::insert, Xor8::populate and Xor8::populate_keys method.

Build a bitmap for pre-computed 64-bit digests for keys. If keys where previously inserted using Xor8::insert or Xor8::populate or Xor8::populate_keys methods, they shall be ignored.

It is upto the caller to ensure that digests are unique, that there no duplicates.

Contains tell you whether the key is likely part of the set, with false positive rate.

Contains tell you whether the key, as pre-computed digest form, is likely part of the set, with false positive rate.

Implements serialization and de-serialization logic for Xor8. This is still work in progress, refer to issue: https://github.com/bnclabs/xorfilter/issues/1 in github.

TODO: https://github.com/bnclabs/xorfilter/issues/1

Write to file in binary format TODO Add chechsum of finger_prints into file headers

Read from file in binary format

Trait Implementations

Returns the “default value” for a type. Read more

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.