-
Notifications
You must be signed in to change notification settings - Fork 3
Open
Description
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);
}
Metadata
Metadata
Assignees
Labels
No labels