You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
There no support to LINQ and on load after 10M rows is very slow please verify thanks.
internal static List<string> LoadAll()
{
var readOptions = new ReadOptions()
{
VerifyCheckSums = true,
FillCache = true
};
var iterator = Instance().CreateIterator(readOptions);
var result = new List<string>();
iterator.SeekToFirst();
while (iterator.IsValid())
{
var key = Encoding.UTF8.GetString(iterator.Key());
result.Add(key);
// Move to the next record
iterator.Next();
}
return result;
}
The text was updated successfully, but these errors were encountered:
There no support to LINQ and on load after 10M rows is very slow please verify thanks.
The text was updated successfully, but these errors were encountered: