Skip to content

Add SpelIndexResolver #160

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
d250f37
DATAREDIS-425 - Add Support for basic CRUD and finder Operations back…
christophstrobl Aug 31, 2015
6518b92
DATAREDIS-425 - Add Support for basic CRUD and finder Operations back…
christophstrobl Aug 31, 2015
7e37c1a
DATAREDIS-425 - Bump KV-Module version to DATAKV-112.
christophstrobl Sep 3, 2015
d6eab77
DATAREDIS-425 - Add dedicated RedisRepositoryFactory.
christophstrobl Sep 3, 2015
02f5c28
DATAREDIS-425 - Make sure index clean up removes values from all pote…
christophstrobl Sep 3, 2015
d080985
DATAREDIS-425 - Provide config option to pick up redisTemplate from c…
christophstrobl Sep 3, 2015
5271895
DATAREDIS-425 - Refactoring part I
christophstrobl Sep 28, 2015
b48b516
DATAREDIS-425 - Refactoring Part II.
christophstrobl Sep 30, 2015
aba1b4e
DATAREDIS-425 - Refactoring Part III (Key Expirations).
christophstrobl Sep 30, 2015
01fbbf4
DATAREDIS-425 - Refactoring Part IV (Entity Model).
christophstrobl Oct 2, 2015
b337bee
DATAREDIS-425 - Refactoring Part V (Custom Conversions).
christophstrobl Oct 9, 2015
c662a38
DATAREDIS-425 - Refactoring Part VI (TTL Property).
christophstrobl Oct 13, 2015
6665721
DATAREDIS-425 - Resolve index when object has custom conversion.
christophstrobl Oct 13, 2015
7be2271
DATAREDIS-425 - Added KeyspaceResolver and TimeToLiveAccessor tests.
christophstrobl Oct 16, 2015
c0946be
DATAREDIS-425 - Move default ReferenceResolver to RedisKeyValueAdapter.
christophstrobl Oct 19, 2015
aea2e07
DATAREDIS-425 - Additional mapping options.
christophstrobl Oct 21, 2015
88af4b3
DATAREDIS-425 - Update JavaDoc.
christophstrobl Oct 22, 2015
75ca225
DATAREDIS-425 - Add Reference Documentation.
christophstrobl Oct 22, 2015
63231e3
DATAREDIS-425 - Normalize index paths for maps and lists.
christophstrobl Oct 23, 2015
97aef6e
DATAREDIS-425 - Simplify usage of RedisCallback for retrieving values.
christophstrobl Oct 28, 2015
b414361
DATAREDIS-425 - Update Reference Documentation.
christophstrobl Oct 28, 2015
fdd236f
DATAREDIS-425 - Adapted to API changes in Spring Data Commons.
christophstrobl Dec 14, 2015
9a949bd
DATAREDIS-425 - Support distinct indexName
Dec 14, 2015
52c42b0
DATAREDIS-425 - Add SpelIndexResolver
Dec 15, 2015
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
14 changes: 8 additions & 6 deletions .project
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,17 @@
<projectDescription>
<name>spring-data-redis</name>
<comment>Spring Data Redis</comment>
<projects/>
<natures>
<nature>org.eclipse.jdt.core.javanature</nature>
</natures>
<projects>
</projects>
<buildSpec>
<buildCommand>
<name>org.eclipse.jdt.core.javabuilder</name>
<arguments/>
<arguments>
</arguments>
</buildCommand>
</buildSpec>
<linkedResources/>
<natures>
<nature>org.springsource.ide.eclipse.gradle.core.nature</nature>
<nature>org.eclipse.jdt.core.javanature</nature>
</natures>
</projectDescription>
1 change: 1 addition & 0 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,7 @@ dependencies {
compile "org.springframework:spring-tx:$springVersion"
compile("org.springframework:spring-oxm:$springVersion", optional)
compile "org.springframework:spring-aop:$springVersion"
compile "org.springframework.data:spring-data-keyvalue:1.1.0.DATAKV-112-SNAPSHOT"

// Redis Drivers
compile("redis.clients:jedis:$jedisVersion", optional)
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ jedisVersion=2.7.3
springVersion=4.1.7.RELEASE
springDataBuildVersion=1.8.0.BUILD-SNAPSHOT
log4jVersion=1.2.17
version=1.7.0.BUILD-SNAPSHOT
version=1.7.0.DATAREDIS-425-SNAPSHOT
srpVersion=0.7
jacksonVersion=1.8.8
fasterXmlJacksonVersion=2.6.1
Expand Down
1 change: 1 addition & 0 deletions src/asciidoc/index.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ include::introduction/getting-started.adoc[]
:leveloffset: +1
include::reference/introduction.adoc[]
include::reference/redis.adoc[]
include::reference/redis-repositories.adoc[]
:leveloffset: -1

[[appendixes]]
Expand Down
Loading