Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
8fa038c
Added Redis cache provider
maca88 Jun 15, 2018
fe9b9e0
Added cancellation tokens to the missing AbstractRegionStrategy members
maca88 Jun 19, 2018
a0f070b
Used IObjectsFactory for creating type instances.
maca88 Jun 19, 2018
97238c4
Fixed typos
maca88 Jun 19, 2018
e61468a
Added a retry policy used for locking
maca88 Jun 21, 2018
d8f8102
Moved lua scripts to embedded resources
maca88 Jun 21, 2018
c0cc960
Added serialization tests for NHibernate types
maca88 Jun 22, 2018
feeb44c
Updated Appveyor for running redis tests
maca88 Jun 23, 2018
c6642a4
Added a configuration option to control the appending of the hash cod…
maca88 Jun 23, 2018
20da5f8
Added test for concurrent locking
maca88 Jun 23, 2018
2350ae7
Added performance tests
maca88 Jun 23, 2018
e6653bb
Disabled using hash codes in cache keys by default
maca88 Jun 24, 2018
b05fba4
Renamed UseHashCode option to AppendHashcode to align with CoreDistri…
maca88 Jul 7, 2018
2c4cafa
Updated the IRedisSerializer methods to be easier replaced with Cache…
maca88 Jul 7, 2018
1fd0a3b
Added logging to region strategies
maca88 Jul 7, 2018
91669a9
Removed the dictionary of locked keys as it will not be needed with N…
maca88 Jul 7, 2018
54371f2
Added the ability to provide a custom IDatabase and IConnectionMultip…
maca88 Jul 7, 2018
a6b7851
Added the ability to set the default configuration options by a stati…
maca88 Jul 11, 2018
832b216
Update to NH5.2
fredericDelaporte Dec 5, 2018
094256d
Implemented TODOs
maca88 Dec 8, 2018
644dedd
Updated StackExchange.Redis package to version 2
maca88 Dec 8, 2018
4db42a5
Renamed project to NHibernate.Caches.StackExchangeRedis
maca88 Dec 8, 2018
2fb32ab
Replaced project name in missed files and added a build file
maca88 Dec 8, 2018
d361edf
Clean RemoveMany remnants
fredericDelaporte Dec 9, 2018
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@ public IConnectionMultiplexer Get(string configuration)
{
TextWriter textWriter = Log.IsDebugEnabled() ? new NHibernateTextWriter(Log) : null;
var connectionMultiplexer = ConnectionMultiplexer.Connect(configuration, textWriter);
connectionMultiplexer.PreserveAsyncOrder = false; // Recommended setting
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This is obsolete with 2.0, and is false by default (see here for more info).

return connectionMultiplexer;
}
}
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<Project Sdk="Microsoft.NET.Sdk">
<Project Sdk="Microsoft.NET.Sdk">
<Import Project="../../NHibernate.Caches.props" />
<PropertyGroup>
<Product>NHibernate.Caches.StackExRedis</Product>
Expand All @@ -22,7 +22,7 @@
<ItemGroup>
<PackageReference Include="Iesi.Collections" Version="4.0.4" />
<PackageReference Include="NHibernate" Version="5.2.0" />
<PackageReference Include="StackExchange.Redis.StrongName" Version="1.2.6" />
<PackageReference Include="StackExchange.Redis" Version="2.0.495" />
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

With version 2.0 the .StrongName package does not exist anymore as StackExchange.Redis is now strong-named.

</ItemGroup>
<ItemGroup>
<Content Include="../../readme.md">
Expand Down