#3 - Added samples for Spring Data Redis.

We added basic samples showing KEYS and SCAN command as well as configuration options for Redis Sentinel.

Original pull request: #9.
This commit is contained in:
Christoph Strobl
2014-08-27 13:01:21 +02:00
committed by Oliver Gierke
parent 7cfd45920f
commit 91565e3e21
15 changed files with 690 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
<?xml version="1.0" encoding="UTF-8"?>
<configuration>
<appender name="console" class="ch.qos.logback.core.ConsoleAppender">
<encoder>
<pattern>%d %5p %40.40c:%4L - %m%n</pattern>
</encoder>
</appender>
<root level="warn">
<appender-ref ref="console" />
</root>
</configuration>