Skip to content

Commit c945e11

Browse files
authored
Changes http to https in texts (redis#8495)
1 parent 3d0b427 commit c945e11

File tree

6 files changed

+14
-14
lines changed

6 files changed

+14
-14
lines changed

00-RELEASENOTES

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,6 @@ to download the latest stable release here:
1111

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

14-
More information is available at http://redis.io
14+
More information is available at https://redis.io
1515

1616
Happy hacking!

README.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,10 @@ Another good example is to think of Redis as a more complex version of memcached
1515

1616
If you want to know more, this is a list of selected starting points:
1717

18-
* Introduction to Redis data types. http://redis.io/topics/data-types-intro
18+
* Introduction to Redis data types. https://redis.io/topics/data-types-intro
1919
* Try Redis directly inside your browser. http://try.redis.io
20-
* The full list of Redis commands. http://redis.io/commands
21-
* There is much more inside the official Redis documentation. http://redis.io/documentation
20+
* The full list of Redis commands. https://redis.io/commands
21+
* There is much more inside the official Redis documentation. https://redis.io/documentation
2222

2323
Building Redis
2424
--------------
@@ -184,7 +184,7 @@ then in another terminal try the following:
184184
(integer) 2
185185
redis>
186186

187-
You can find the list of all the available commands at http://redis.io/commands.
187+
You can find the list of all the available commands at https://redis.io/commands.
188188

189189
Installing Redis
190190
-----------------
@@ -453,7 +453,7 @@ Other C files
453453
* `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.
454454
* `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].
455455

456-
[3]: http://redis.io/topics/cluster-spec
456+
[3]: https://redis.io/topics/cluster-spec
457457

458458
Anatomy of a Redis command
459459
---

redis.conf

+3-3
Original file line numberDiff line numberDiff line change
@@ -1225,7 +1225,7 @@ disable-thp yes
12251225
# If the AOF is enabled on startup Redis will load the AOF, that is the file
12261226
# with the better durability guarantees.
12271227
#
1228-
# Please check http://redis.io/topics/persistence for more information.
1228+
# Please check https://redis.io/topics/persistence for more information.
12291229

12301230
appendonly no
12311231

@@ -1480,7 +1480,7 @@ lua-time-limit 5000
14801480
# cluster-allow-reads-when-down no
14811481

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

14851485
########################## CLUSTER DOCKER/NAT support ########################
14861486

@@ -1563,7 +1563,7 @@ latency-monitor-threshold 0
15631563
############################# EVENT NOTIFICATION ##############################
15641564

15651565
# Redis can notify Pub/Sub clients about events happening in the key space.
1566-
# This feature is documented at http://redis.io/topics/notifications
1566+
# This feature is documented at https://redis.io/topics/notifications
15671567
#
15681568
# For instance if keyspace events notification is enabled, and a client
15691569
# performs a DEL operation on key "foo" stored in the Database 0, two

src/asciilogo.h

+2-2
Original file line numberDiff line numberDiff line change
@@ -31,13 +31,13 @@ const char *ascii_logo =
3131
" _._ \n"
3232
" _.-``__ ''-._ \n"
3333
" _.-`` `. `_. ''-._ Redis %s (%s/%d) %s bit\n"
34-
" .-`` .-```. ```\\/ _.,_ ''-._ \n"
34+
" .-`` .-```. ```\\/ _.,_ ''-._ \n"
3535
" ( ' , .-` | `, ) Running in %s mode\n"
3636
" |`-._`-...-` __...-.``-._|'` _.-'| Port: %d\n"
3737
" | `-._ `._ / _.-' | PID: %ld\n"
3838
" `-._ `-._ `-./ _.-' _.-' \n"
3939
" |`-._`-._ `-.__.-' _.-'_.-'| \n"
40-
" | `-._`-._ _.-'_.-' | http://redis.io \n"
40+
" | `-._`-._ _.-'_.-' | https://redis.io \n"
4141
" `-._ `-._`-.__.-'_.-' _.-' \n"
4242
" |`-._`-._ `-.__.-' _.-'_.-'| \n"
4343
" | `-._`-._ _.-'_.-' | \n"

src/latency.c

+2-2
Original file line numberDiff line numberDiff line change
@@ -256,7 +256,7 @@ sds createLatencyReport(void) {
256256
if (dictSize(server.latency_events) == 0 &&
257257
server.latency_monitor_threshold == 0)
258258
{
259-
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");
259+
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");
260260
return report;
261261
}
262262

@@ -426,7 +426,7 @@ sds createLatencyReport(void) {
426426
}
427427

428428
if (advise_slowlog_inspect) {
429-
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");
429+
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");
430430
}
431431

432432
/* Intrinsic latency. */

utils/whatisdoing.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
# Software Watchdog, which provides a similar functionality but in
55
# a more reliable / easy to use way.
66
#
7-
# Check http://redis.io/topics/latency for more information.
7+
# Check https://redis.io/topics/latency for more information.
88

99
#!/bin/bash
1010
nsamples=1

0 commit comments

Comments
 (0)