Skip to content

get \ put problem 120512 #1

@thenik

Description

@thenik

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

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions