Skip to content

Commit b55f652

Browse files
committed
Changing min StackExchange.Redis version to 1.2.6, fixes #179
1 parent 1aeb55d commit b55f652

3 files changed

Lines changed: 5 additions & 6 deletions

File tree

src/CacheManager.StackExchange.Redis/CacheManager.StackExchange.Redis.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
<PackageTags>Caching;Cache;CacheManager;Distributed Cache;StackExchange Redis;Azure AppFabric;Memcached</PackageTags>
99
</PropertyGroup>
1010
<ItemGroup>
11-
<PackageReference Include="StackExchange.Redis.StrongName" Version="1.2.1" />
11+
<PackageReference Include="StackExchange.Redis.StrongName" Version="1.2.6" />
1212
</ItemGroup>
1313
<ItemGroup>
1414
<ProjectReference Include="..\CacheManager.Core\CacheManager.Core.csproj" />

test/CacheManager.Config.Tests/Program.cs

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ internal class Program
1515
{
1616
public static void Main(string[] args)
1717
{
18-
var iterations = 10;
18+
var iterations = 100;
1919
try
2020
{
2121
var builder = new Core.ConfigurationBuilder("myCache");
@@ -24,7 +24,7 @@ public static void Main(string[] args)
2424
f.AddConsole(LogLevel.Warning);
2525
f.AddDebug(LogLevel.Debug);
2626
});
27-
27+
2828
builder
2929
.WithRetryTimeout(500)
3030
.WithMaxRetries(5);
@@ -54,7 +54,6 @@ public static void Main(string[] args)
5454

5555
//builder.WithRedisConfiguration("redis", "localhost:22121");
5656

57-
5857
builder.WithBondCompactBinarySerializer();
5958

6059
#if !NETCOREAPP
@@ -106,4 +105,4 @@ public static void Main(string[] args)
106105
Console.ReadKey();
107106
}
108107
}
109-
}
108+
}

test/CacheManager.Config.Tests/Tests.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -430,4 +430,4 @@ public static Item Generate()
430430
SomeStrings = new List<string>() { "Something", "more", "or", "less" }
431431
};
432432
}
433-
}
433+
}

0 commit comments

Comments
 (0)