summaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorcheese1 <cheese@nosuchhost.net>2021-03-10 18:11:16 +0100
committerGitHub <noreply@github.com>2021-03-10 19:11:16 +0200
commitc945e1126a0b7ccba642af7c51c60f2d86290e17 (patch)
tree812b3115d463502fc5794acbaf71503e28bf5e3e /README.md
parent3d0b427c30610b45c00b2377ee28bb69974ccea2 (diff)
downloadredis-c945e1126a0b7ccba642af7c51c60f2d86290e17.tar.gz
Changes http to https in texts (#8495)
Diffstat (limited to 'README.md')
-rw-r--r--README.md10
1 files changed, 5 insertions, 5 deletions
diff --git a/README.md b/README.md
index d892f4881..ab911b731 100644
--- a/README.md
+++ b/README.md
@@ -15,10 +15,10 @@ Another good example is to think of Redis as a more complex version of memcached
If you want to know more, this is a list of selected starting points:
-* Introduction to Redis data types. http://redis.io/topics/data-types-intro
+* Introduction to Redis data types. https://redis.io/topics/data-types-intro
* Try Redis directly inside your browser. http://try.redis.io
-* The full list of Redis commands. http://redis.io/commands
-* There is much more inside the official Redis documentation. http://redis.io/documentation
+* The full list of Redis commands. https://redis.io/commands
+* There is much more inside the official Redis documentation. https://redis.io/documentation
Building Redis
--------------
@@ -184,7 +184,7 @@ then in another terminal try the following:
(integer) 2
redis>
-You can find the list of all the available commands at http://redis.io/commands.
+You can find the list of all the available commands at https://redis.io/commands.
Installing Redis
-----------------
@@ -453,7 +453,7 @@ Other C files
* `scripting.c` implements Lua scripting. It is completely self-contained and isolated from the rest of the Redis implementation and is simple enough to understand if you are familiar with the Lua API.
* `cluster.c` implements the Redis Cluster. Probably a good read only after being very familiar with the rest of the Redis code base. If you want to read `cluster.c` make sure to read the [Redis Cluster specification][3].
-[3]: http://redis.io/topics/cluster-spec
+[3]: https://redis.io/topics/cluster-spec
Anatomy of a Redis command
---