You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Sample code to use Redis as a tagging cache and Distributed Lock Manager.
5
+
6
+
## Usage
7
+
8
+
Examine the tests in *RedisWithTaggingAndLockingTests* and run them using your favorite test runner for examples of how to consume the Tagging and Locking extensions.
9
+
10
+
## Notes
11
+
12
+
This project is intended to give a general idea of how tagging and DLM can be accomplished with Redis and .NET. Many specific functions (Removing cache entries by tag) have not been included in this sample, but could be easily accomplished with modified versions of the included C# code and Lua scripts.
13
+
14
+
## Dependencies
15
+
16
+
ServiceStack.Redis 4.0.33, NUnit 2.6.3
17
+
18
+
## License
19
+
20
+
Copyright 2014 Stackify, LLC.
21
+
22
+
Licensed under the Apache License, Version 2.0 (the "License");
23
+
you may not use this file except in compliance with the License.
24
+
You may obtain a copy of the License at
25
+
26
+
http://www.apache.org/licenses/LICENSE-2.0
27
+
28
+
Unless required by applicable law or agreed to in writing, software
29
+
distributed under the License is distributed on an "AS IS" BASIS,
30
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
31
+
See the License for the specific language governing permissions and
32
+
limitations under the License.
33
+
34
+
This code extends some portions of the ServiceStack.Redis project under the terms granted in the FOSS exceptions segment of [that project's license file](https://github.com/ServiceStack/ServiceStack.Redis/blob/v4.0.33/license.txt"ServiceStack.Redis License").
0 commit comments