File tree 1 file changed +1
-16
lines changed
1 file changed +1
-16
lines changed Original file line number Diff line number Diff line change 6
6
using NRedisStack . Search . FT . CREATE ;
7
7
using NRedisStack . Search ;
8
8
9
- namespace NRedisStack . Tests . Bloom ;
9
+ namespace NRedisStack . Tests ;
10
10
11
11
public class PipelineTests : AbstractNRedisStackTest , IDisposable
12
12
{
@@ -19,21 +19,6 @@ public void Dispose()
19
19
redisFixture . Redis . GetDatabase ( ) . KeyDelete ( key ) ;
20
20
}
21
21
22
- // [Fact]
23
- // public async Task TestPipeline()
24
- // {
25
- // IDatabase db = redisFixture.Redis.GetDatabase();
26
- // db.Execute("FLUSHALL");
27
- // var pipeline = new Pipeline(db);
28
-
29
- // pipeline.Db.StringSetAsync("a", "a1");
30
- // pipeline.Db.StringGetAsync("a");
31
- // pipeline.Db.SortedSetAddAsync("z", new SortedSetEntry[] { new SortedSetEntry("z1", 1) });
32
- // pipeline.Db.SortedSetAddAsync("z", new SortedSetEntry[] { new SortedSetEntry("z2", 4) });
33
- // pipeline.Db.SortedSetIncrementAsync()
34
- // }
35
-
36
-
37
22
[ Fact ]
38
23
public async Task TestModulsPipeline ( )
39
24
{
You can’t perform that action at this time.
0 commit comments