예제 #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();
 }