Skip to content

Commit a3c4fc6

Browse files
DATAREDIS-438 - Polising.
RedisGeoCommands now take and return Spring Data domain types like Distance and GeoResults. Updated JavaDoc and Reference documentation. Added and updated author and license headers. Fixed minor formatting and code style issues. Original Pulll Request: #187
1 parent b0e20d3 commit a3c4fc6

File tree

49 files changed

+9201
-5481
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

49 files changed

+9201
-5481
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
# See the License for the specific language governing permissions and
1313
# limitations under the License.
1414

15-
REDIS_VERSION:=3.2.0-rc3
15+
REDIS_VERSION:=3.2.0
1616
SPRING_PROFILE?=ci
1717

1818
#######

src/main/asciidoc/new-features.adoc

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,17 @@
33

44
New and noteworthy in the latest releases.
55

6+
[[new-in-1.8.0]]
7+
== New in Spring Data Redis 1.8
8+
9+
* Support for Redis http://redis.io/commands#geo[GEO] commands.
10+
11+
[[new-in-1.7.0]]
12+
== New in Spring Data Redis 1.7
13+
14+
* Support for http://redis.io/topics/cluster-tutorial[RedisCluster].
15+
* Support for Spring Data Repository abstractions (see <<redis.repositories>>).
16+
617
[[new-in-1-6-0]]
718
== New in Spring Data Redis 1.6
819

src/main/asciidoc/reference/redis.adoc

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -235,6 +235,9 @@ Moreover, the template provides operations views (following the grouping from Re
235235
|HyperLogLogOperations
236236
|Redis HyperLogLog operations like (pfadd, pfcount,...)
237237

238+
|GeoOperations
239+
|Redis geospatial operations like `GEOADD`, `GEORADIUS`,...)
240+
238241
2+^|_Key Bound Operations_
239242

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

252255
|BoundHashOperations
253256
|Redis hash key bound operations
257+
258+
|BoundGeoOperations
259+
|Redis key bound geospatial operations.
254260
|====
255261

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

0 commit comments

Comments
 (0)