Project

General

Profile

Bug #8476

Updated by Loïc Dachary almost 10 years ago

According to the source code it seems that 'insert_count_' is not taken take into account when manipulating manipulation objects using operators like (intersect, (intersec, union, diff...) 

 <pre> 
 bf1 &= bf2 
 bf1 |= bf2 
 bf1 ^= bf2 
 </pre> 

 https://github.com/ceph/ceph/blob/master/src/common/bloom_filter.hpp#L359

Back