Skip to content

DATAREDIS-513 - Fix RedisServerCommands.time() failure when in pipeline mode. #199

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
wants to merge 3 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
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
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
# See the License for the specific language governing permissions and
# limitations under the License.

REDIS_VERSION:=3.2.0-rc3
REDIS_VERSION:=3.2.0
SPRING_PROFILE?=ci

#######
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

<groupId>org.springframework.data</groupId>
<artifactId>spring-data-redis</artifactId>
<version>1.8.0.BUILD-SNAPSHOT</version>
<version>1.8.0.DATAREDIS-513-SNAPSHOT</version>

<name>Spring Data Redis</name>

Expand Down
11 changes: 11 additions & 0 deletions src/main/asciidoc/new-features.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,17 @@

New and noteworthy in the latest releases.

[[new-in-1.8.0]]
== New in Spring Data Redis 1.8

* Support for Redis http://redis.io/commands#geo[GEO] commands.

[[new-in-1.7.0]]
== New in Spring Data Redis 1.7

* Support for http://redis.io/topics/cluster-tutorial[RedisCluster].
* Support for Spring Data Repository abstractions (see <<redis.repositories>>).

[[new-in-1-6-0]]
== New in Spring Data Redis 1.6

Expand Down
6 changes: 6 additions & 0 deletions src/main/asciidoc/reference/redis.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -235,6 +235,9 @@ Moreover, the template provides operations views (following the grouping from Re
|HyperLogLogOperations
|Redis HyperLogLog operations like (pfadd, pfcount,...)

|GeoOperations
|Redis geospatial operations like `GEOADD`, `GEORADIUS`,...)

2+^|_Key Bound Operations_

|BoundValueOperations
Expand All @@ -251,6 +254,9 @@ Moreover, the template provides operations views (following the grouping from Re

|BoundHashOperations
|Redis hash key bound operations

|BoundGeoOperations
|Redis key bound geospatial operations.
|====

Once configured, the template is thread-safe and can be reused across multiple instances.
Expand Down
Loading