Firkin icon indicating copy to clipboard operation
Firkin copied to clipboard

get \ put problem 120512

Open thenik opened this issue 13 years ago • 0 comments

the next code does not work....

var storageDirectory = Path.Combine(Application.StartupPath, "bdb"); Directory.CreateDirectory(storageDirectory); var store = new FirkinHash(storageDirectory); for (int i = 0; i < 10000000; i++) { var valueStream = store.Get(i.ToString()); if (valueStream == null) { break; } else { var r = valueStream.To(); if (r != i.ToString()) { Debug.Assert(false); } } } for (int i = 0; i < 10000000; i++) { var st = i.ToStream(); store.Put(i.ToString(), st, st.Length); }

thenik avatar May 12 '12 09:05 thenik