Skip to content

Commit

Permalink
Changes http to https in texts (redis#8495)
Browse files Browse the repository at this point in the history
  • Loading branch information
cheese1 authored Mar 10, 2021
1 parent 3d0b427 commit c945e11
Show file tree
Hide file tree
Showing 6 changed files with 14 additions and 14 deletions.
2 changes: 1 addition & 1 deletion 00-RELEASENOTES
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,6 @@ to download the latest stable release here:

http://download.redis.io/releases/redis-stable.tar.gz

More information is available at http://redis.io
More information is available at https://redis.io

Happy hacking!
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
--------------
Expand Down Expand Up @@ -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
-----------------
Expand Down Expand Up @@ -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
---
Expand Down
6 changes: 3 additions & 3 deletions redis.conf
Original file line number Diff line number Diff line change
Expand Up @@ -1225,7 +1225,7 @@ disable-thp yes
# If the AOF is enabled on startup Redis will load the AOF, that is the file
# with the better durability guarantees.
#
# Please check http://redis.io/topics/persistence for more information.
# Please check https://redis.io/topics/persistence for more information.

appendonly no

Expand Down Expand Up @@ -1480,7 +1480,7 @@ lua-time-limit 5000
# cluster-allow-reads-when-down no

# In order to setup your cluster make sure to read the documentation
# available at http://redis.io web site.
# available at https://redis.io web site.

########################## CLUSTER DOCKER/NAT support ########################

Expand Down Expand Up @@ -1563,7 +1563,7 @@ latency-monitor-threshold 0
############################# EVENT NOTIFICATION ##############################

# Redis can notify Pub/Sub clients about events happening in the key space.
# This feature is documented at http://redis.io/topics/notifications
# This feature is documented at https://redis.io/topics/notifications
#
# For instance if keyspace events notification is enabled, and a client
# performs a DEL operation on key "foo" stored in the Database 0, two
Expand Down
4 changes: 2 additions & 2 deletions src/asciilogo.h
Original file line number Diff line number Diff line change
Expand Up @@ -31,13 +31,13 @@ const char *ascii_logo =
" _._ \n"
" _.-``__ ''-._ \n"
" _.-`` `. `_. ''-._ Redis %s (%s/%d) %s bit\n"
" .-`` .-```. ```\\/ _.,_ ''-._ \n"
" .-`` .-```. ```\\/ _.,_ ''-._ \n"
" ( ' , .-` | `, ) Running in %s mode\n"
" |`-._`-...-` __...-.``-._|'` _.-'| Port: %d\n"
" | `-._ `._ / _.-' | PID: %ld\n"
" `-._ `-._ `-./ _.-' _.-' \n"
" |`-._`-._ `-.__.-' _.-'_.-'| \n"
" | `-._`-._ _.-'_.-' | http://redis.io \n"
" | `-._`-._ _.-'_.-' | https://redis.io \n"
" `-._ `-._`-.__.-'_.-' _.-' \n"
" |`-._`-._ `-.__.-' _.-'_.-'| \n"
" | `-._`-._ _.-'_.-' | \n"
Expand Down
4 changes: 2 additions & 2 deletions src/latency.c
Original file line number Diff line number Diff line change
Expand Up @@ -256,7 +256,7 @@ sds createLatencyReport(void) {
if (dictSize(server.latency_events) == 0 &&
server.latency_monitor_threshold == 0)
{
report = sdscat(report,"I'm sorry, Dave, I can't do that. Latency monitoring is disabled in this Redis instance. You may use \"CONFIG SET latency-monitor-threshold <milliseconds>.\" in order to enable it. If we weren't in a deep space mission I'd suggest to take a look at http://redis.io/topics/latency-monitor.\n");
report = sdscat(report,"I'm sorry, Dave, I can't do that. Latency monitoring is disabled in this Redis instance. You may use \"CONFIG SET latency-monitor-threshold <milliseconds>.\" in order to enable it. If we weren't in a deep space mission I'd suggest to take a look at https://redis.io/topics/latency-monitor.\n");
return report;
}

Expand Down Expand Up @@ -426,7 +426,7 @@ sds createLatencyReport(void) {
}

if (advise_slowlog_inspect) {
report = sdscat(report,"- Check your Slow Log to understand what are the commands you are running which are too slow to execute. Please check http://redis.io/commands/slowlog for more information.\n");
report = sdscat(report,"- Check your Slow Log to understand what are the commands you are running which are too slow to execute. Please check https://redis.io/commands/slowlog for more information.\n");
}

/* Intrinsic latency. */
Expand Down
2 changes: 1 addition & 1 deletion utils/whatisdoing.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
# Software Watchdog, which provides a similar functionality but in
# a more reliable / easy to use way.
#
# Check http://redis.io/topics/latency for more information.
# Check https://redis.io/topics/latency for more information.

#!/bin/bash
nsamples=1
Expand Down

0 comments on commit c945e11

Please sign in to comment.