├── .gitignore ├── LICENSE ├── README.md ├── Test ├── Test │ ├── App.config │ ├── Program.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── Test.csproj │ ├── packages.config │ └── 测试结果.txt ├── WebTest.sln └── WebTest │ ├── App_Start │ ├── LoggerHelper.cs │ └── RouteConfig.cs │ ├── Controllers │ └── TestController.cs │ ├── Global.asax │ ├── Global.asax.cs │ ├── Properties │ └── AssemblyInfo.cs │ ├── Test_Insert.sql │ ├── Web.Debug.config │ ├── Web.Release.config │ ├── Web.config │ ├── WebTest.csproj │ └── packages.config ├── ToolGood.AntiDuplication.Redis.StackExchange ├── StackExchangeRedisCache.cs └── ToolGood.AntiDuplication.Redis.StackExchange.csproj ├── ToolGood.AntiDuplication.Test ├── App.config ├── Cache.cs ├── Program.cs ├── Properties │ └── AssemblyInfo.cs └── ToolGood.AntiDuplication.Test.csproj ├── ToolGood.AntiDuplication.sln └── ToolGood.AntiDuplication ├── AntiDupCache.cs ├── AntiDupQueue.cs ├── DictCache.cs ├── IConcurrentCache.cs ├── ToolGood.AntiDuplication.csproj └── key.snk /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toolgood/ToolGood.AntiDuplication/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toolgood/ToolGood.AntiDuplication/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toolgood/ToolGood.AntiDuplication/HEAD/README.md -------------------------------------------------------------------------------- /Test/Test/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toolgood/ToolGood.AntiDuplication/HEAD/Test/Test/App.config -------------------------------------------------------------------------------- /Test/Test/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toolgood/ToolGood.AntiDuplication/HEAD/Test/Test/Program.cs -------------------------------------------------------------------------------- /Test/Test/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toolgood/ToolGood.AntiDuplication/HEAD/Test/Test/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Test/Test/Test.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toolgood/ToolGood.AntiDuplication/HEAD/Test/Test/Test.csproj -------------------------------------------------------------------------------- /Test/Test/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toolgood/ToolGood.AntiDuplication/HEAD/Test/Test/packages.config -------------------------------------------------------------------------------- /Test/Test/测试结果.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toolgood/ToolGood.AntiDuplication/HEAD/Test/Test/测试结果.txt -------------------------------------------------------------------------------- /Test/WebTest.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toolgood/ToolGood.AntiDuplication/HEAD/Test/WebTest.sln -------------------------------------------------------------------------------- /Test/WebTest/App_Start/LoggerHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toolgood/ToolGood.AntiDuplication/HEAD/Test/WebTest/App_Start/LoggerHelper.cs -------------------------------------------------------------------------------- /Test/WebTest/App_Start/RouteConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toolgood/ToolGood.AntiDuplication/HEAD/Test/WebTest/App_Start/RouteConfig.cs -------------------------------------------------------------------------------- /Test/WebTest/Controllers/TestController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toolgood/ToolGood.AntiDuplication/HEAD/Test/WebTest/Controllers/TestController.cs -------------------------------------------------------------------------------- /Test/WebTest/Global.asax: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toolgood/ToolGood.AntiDuplication/HEAD/Test/WebTest/Global.asax -------------------------------------------------------------------------------- /Test/WebTest/Global.asax.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toolgood/ToolGood.AntiDuplication/HEAD/Test/WebTest/Global.asax.cs -------------------------------------------------------------------------------- /Test/WebTest/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toolgood/ToolGood.AntiDuplication/HEAD/Test/WebTest/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Test/WebTest/Test_Insert.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toolgood/ToolGood.AntiDuplication/HEAD/Test/WebTest/Test_Insert.sql -------------------------------------------------------------------------------- /Test/WebTest/Web.Debug.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toolgood/ToolGood.AntiDuplication/HEAD/Test/WebTest/Web.Debug.config -------------------------------------------------------------------------------- /Test/WebTest/Web.Release.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toolgood/ToolGood.AntiDuplication/HEAD/Test/WebTest/Web.Release.config -------------------------------------------------------------------------------- /Test/WebTest/Web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toolgood/ToolGood.AntiDuplication/HEAD/Test/WebTest/Web.config -------------------------------------------------------------------------------- /Test/WebTest/WebTest.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toolgood/ToolGood.AntiDuplication/HEAD/Test/WebTest/WebTest.csproj -------------------------------------------------------------------------------- /Test/WebTest/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toolgood/ToolGood.AntiDuplication/HEAD/Test/WebTest/packages.config -------------------------------------------------------------------------------- /ToolGood.AntiDuplication.Redis.StackExchange/StackExchangeRedisCache.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toolgood/ToolGood.AntiDuplication/HEAD/ToolGood.AntiDuplication.Redis.StackExchange/StackExchangeRedisCache.cs -------------------------------------------------------------------------------- /ToolGood.AntiDuplication.Redis.StackExchange/ToolGood.AntiDuplication.Redis.StackExchange.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toolgood/ToolGood.AntiDuplication/HEAD/ToolGood.AntiDuplication.Redis.StackExchange/ToolGood.AntiDuplication.Redis.StackExchange.csproj -------------------------------------------------------------------------------- /ToolGood.AntiDuplication.Test/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toolgood/ToolGood.AntiDuplication/HEAD/ToolGood.AntiDuplication.Test/App.config -------------------------------------------------------------------------------- /ToolGood.AntiDuplication.Test/Cache.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toolgood/ToolGood.AntiDuplication/HEAD/ToolGood.AntiDuplication.Test/Cache.cs -------------------------------------------------------------------------------- /ToolGood.AntiDuplication.Test/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toolgood/ToolGood.AntiDuplication/HEAD/ToolGood.AntiDuplication.Test/Program.cs -------------------------------------------------------------------------------- /ToolGood.AntiDuplication.Test/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toolgood/ToolGood.AntiDuplication/HEAD/ToolGood.AntiDuplication.Test/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /ToolGood.AntiDuplication.Test/ToolGood.AntiDuplication.Test.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toolgood/ToolGood.AntiDuplication/HEAD/ToolGood.AntiDuplication.Test/ToolGood.AntiDuplication.Test.csproj -------------------------------------------------------------------------------- /ToolGood.AntiDuplication.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toolgood/ToolGood.AntiDuplication/HEAD/ToolGood.AntiDuplication.sln -------------------------------------------------------------------------------- /ToolGood.AntiDuplication/AntiDupCache.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toolgood/ToolGood.AntiDuplication/HEAD/ToolGood.AntiDuplication/AntiDupCache.cs -------------------------------------------------------------------------------- /ToolGood.AntiDuplication/AntiDupQueue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toolgood/ToolGood.AntiDuplication/HEAD/ToolGood.AntiDuplication/AntiDupQueue.cs -------------------------------------------------------------------------------- /ToolGood.AntiDuplication/DictCache.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toolgood/ToolGood.AntiDuplication/HEAD/ToolGood.AntiDuplication/DictCache.cs -------------------------------------------------------------------------------- /ToolGood.AntiDuplication/IConcurrentCache.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toolgood/ToolGood.AntiDuplication/HEAD/ToolGood.AntiDuplication/IConcurrentCache.cs -------------------------------------------------------------------------------- /ToolGood.AntiDuplication/ToolGood.AntiDuplication.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toolgood/ToolGood.AntiDuplication/HEAD/ToolGood.AntiDuplication/ToolGood.AntiDuplication.csproj -------------------------------------------------------------------------------- /ToolGood.AntiDuplication/key.snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toolgood/ToolGood.AntiDuplication/HEAD/ToolGood.AntiDuplication/key.snk --------------------------------------------------------------------------------