Compute the word attribute postings lists on each threads

This commit is contained in:
Clément Renault
2020-08-06 11:08:24 +02:00
parent 8d734941af
commit d3b1096510
2 changed files with 108 additions and 109 deletions

View File

@ -34,7 +34,7 @@ pub type SmallVec32<T> = smallvec::SmallVec<[T; 32]>;
pub type SmallVec16<T> = smallvec::SmallVec<[T; 16]>;
pub type BEU32 = heed::zerocopy::U32<heed::byteorder::BE>;
pub type DocumentId = u32;
pub type AttributeId = u32;
pub type Attribute = u32;
pub type Position = u32;
#[derive(Clone)]