You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ignite.apache.org by an...@apache.org on 2016/11/28 10:04:13 UTC

ignite git commit: IGNITE-4243 Fixed link in Redis examples.

Repository: ignite
Updated Branches:
  refs/heads/master 1bf440b36 -> 7af7a9941


IGNITE-4243 Fixed link in Redis examples.


Project: http://git-wip-us.apache.org/repos/asf/ignite/repo
Commit: http://git-wip-us.apache.org/repos/asf/ignite/commit/7af7a994
Tree: http://git-wip-us.apache.org/repos/asf/ignite/tree/7af7a994
Diff: http://git-wip-us.apache.org/repos/asf/ignite/diff/7af7a994

Branch: refs/heads/master
Commit: 7af7a9941611761b174fdd3992f225b549c20624
Parents: 1bf440b
Author: Andrey Novikov <an...@gridgain.com>
Authored: Mon Nov 28 17:03:52 2016 +0700
Committer: Andrey Novikov <an...@gridgain.com>
Committed: Mon Nov 28 17:03:52 2016 +0700

----------------------------------------------------------------------
 examples/redis/redis-example.php | 2 +-
 examples/redis/redis-example.py  | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/ignite/blob/7af7a994/examples/redis/redis-example.php
----------------------------------------------------------------------
diff --git a/examples/redis/redis-example.php b/examples/redis/redis-example.php
index 0054f16..f015b5c 100644
--- a/examples/redis/redis-example.php
+++ b/examples/redis/redis-example.php
@@ -22,7 +22,7 @@
  * To execute this script, you need to have Predis extension installed and Ignite running.
  * See https://github.com/nrk/predis for Predis details.
  *
- * See https://apacheignite.readme.io/ for more details on Redis integration.
+ * See https://apacheignite.readme.io/docs/redis for more details on Redis integration.
  */
 
 // Load the library.

http://git-wip-us.apache.org/repos/asf/ignite/blob/7af7a994/examples/redis/redis-example.py
----------------------------------------------------------------------
diff --git a/examples/redis/redis-example.py b/examples/redis/redis-example.py
index 15b847b..f6c4f36 100644
--- a/examples/redis/redis-example.py
+++ b/examples/redis/redis-example.py
@@ -20,7 +20,7 @@ import redis
 To execute this, you will have redis-py installed and Ignite running.
 See https://github.com/andymccurdy/redis-py for the details on redis-py.
 
-See https://apacheignite.readme.io/ for more details on Redis integration.
+See https://apacheignite.readme.io/docs/redis for more details on Redis integration.
 '''
 
 r = redis.StrictRedis(host='localhost', port=11211, db=0)