コード例 #1
0
ファイル: TestUtils.cs プロジェクト: zyhong/DBTrie
        public static async Task AssertExists(this LTrie trie, string key)
        {
            using var result = await trie.GetValue("@utTestTa");

            Assert.NotNull(result);
        }
コード例 #2
0
ファイル: Benchmark1.cs プロジェクト: zyhong/DBTrie
 public async Task RandomSearch()
 {
     (await trie.GetValue(key))?.Dispose();
 }