public bool AddIfNotExist(Algorithm.BTree.BTreeItemOnDisk item)
        {
            Locker.Lock();
            var r = Collection.AddIfNotExist(item);

            Locker.Unlock();
            return(r);
        }