コード例 #1
0
        public Persistent_Dictionary(string name)
        {
            _value_Serializer = new Default_Binary_Serializer <TValue>();
            _config           = Configuration <TKey> .Default_For(name);

            _bptree = new Core.BPlusTree <TKey>(_config);
        }
コード例 #2
0
 public void Clear()
 {
     _bptree.Dispose();
     _config.Stream_Factory.Clear();
     _bptree = new Core.BPlusTree <TKey>(_config);
 }