DATAREDIS-254 - Clean up codebase to match spring-data conventions
Remove orphaned test context files. Update documentation to reflect new version dependencies.
This commit is contained in:
committed by
Thomas Darimont
parent
e0524379d6
commit
e42e803603
@@ -23,6 +23,6 @@ Please see the reference documentation.
|
||||
Additionally the blog at http://blog.springsource.com as well as sections of interest in the reference documentation.
|
||||
|
||||
ADDITIONAL RESOURCES
|
||||
Spring Data Homepage: http://www.springsource.org/spring-data/redis
|
||||
Spring Data Homepage: http://projects.spring.io/spring-data-redis/
|
||||
Spring Data Forum : http://forum.springsource.org/forumdisplay.php?f=80
|
||||
Redis Homepage : http://redis.io
|
||||
@@ -1,11 +1,11 @@
|
||||
<chapter xml:id="requirements" xmlns="http://docbook.org/ns/docbook" version="5.0">
|
||||
<title>Requirements</title>
|
||||
|
||||
<para>Spring Data Redis 1.x binaries requires JDK level 6.0 and above,
|
||||
<para>Spring Data Redis 1.2.x binaries requires JDK level 6.0 and above,
|
||||
and <ulink url="http://www.springsource.org/documentation">Spring Framework</ulink>
|
||||
3.0.x and above.</para>
|
||||
3.2.7 and above.</para>
|
||||
<para>
|
||||
In terms of key value stores, <ulink url="http://redis.io">Redis</ulink> 2.4.x or higher
|
||||
is required. Spring Data Redis is currently tested against the latest 2.4 and 2.6 releases.
|
||||
In terms of key value stores, <ulink url="http://redis.io">Redis</ulink> 2.6.x or higher
|
||||
is required. Spring Data Redis is currently tested against the latest 2.6 and 2.8 releases.
|
||||
</para>
|
||||
</chapter>
|
||||
@@ -16,12 +16,12 @@
|
||||
|
||||
<section id="redis:requirements">
|
||||
<title>Redis Requirements</title>
|
||||
<para>Spring Redis requires Redis 2.4 or above and Java SE 6.0 or above .
|
||||
<para>Spring Redis requires Redis 2.6 or above and Java SE 6.0 or above .
|
||||
In terms of language bindings (or connectors), Spring Redis integrates with <ulink url="http://github.com/xetorthio/jedis">Jedis</ulink>,
|
||||
<ulink url="http://github.com/alphazero/jredis">JRedis</ulink>,
|
||||
<ulink url="http://github.com/spullara/redis-protocol">SRP</ulink> and
|
||||
<ulink url="http://github.com/wg/lettuce">Lettuce</ulink>, four popular open source Java libraries for Redis.
|
||||
If you are aware of any other connector that we should be integrating with, please send us feedback.
|
||||
If you are aware of any other connector that we should be integrating with please send us feedback.
|
||||
</para>
|
||||
</section>
|
||||
|
||||
@@ -41,7 +41,7 @@
|
||||
</itemizedlist>
|
||||
|
||||
<para>For most tasks, the high-level abstractions and support services are the best choice. Note that at any point, one can move between layers - for example, it's very
|
||||
easy to get a hold of the low level connection (or even the native libray) to communicate directly with Redis.</para>
|
||||
easy to get a hold of the low level connection (or even the native library) to communicate directly with Redis.</para>
|
||||
</section>
|
||||
|
||||
<section id="redis:connectors">
|
||||
|
||||
@@ -1,18 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<beans xmlns="http://www.springframework.org/schema/beans"
|
||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:p="http://www.springframework.org/schema/p"
|
||||
xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd">
|
||||
|
||||
<bean id="rjcConnectionFactory "
|
||||
class="org.springframework.data.redis.connection.rjc.RjcConnectionFactory">
|
||||
<property name="hostName">
|
||||
<bean class="org.springframework.data.redis.SettingsUtils"
|
||||
factory-method="getHost" />
|
||||
</property>
|
||||
<property name="port">
|
||||
<bean class="org.springframework.data.redis.SettingsUtils"
|
||||
factory-method="getPort" />
|
||||
</property>
|
||||
</bean>
|
||||
|
||||
</beans>
|
||||
@@ -1,18 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<beans xmlns="http://www.springframework.org/schema/beans"
|
||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:p="http://www.springframework.org/schema/p"
|
||||
xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd">
|
||||
|
||||
<bean id="rjcConnectionFactory "
|
||||
class="org.springframework.data.redis.connection.rjc.RjcConnectionFactory">
|
||||
<property name="hostName">
|
||||
<bean class="org.springframework.data.redis.SettingsUtils"
|
||||
factory-method="getHost" />
|
||||
</property>
|
||||
<property name="port">
|
||||
<bean class="org.springframework.data.redis.SettingsUtils"
|
||||
factory-method="getPort" />
|
||||
</property>
|
||||
</bean>
|
||||
|
||||
</beans>
|
||||
Reference in New Issue
Block a user