Commit Graph

68 Commits

Author SHA1 Message Date
Guide 52cce06e41 [docs update]补充完善消息队列应用场景&spi机制 2024-04-30 10:02:33 +08:00
Guide 8a8348b087 [docs update]JDK监控和故障处理工具新增MAT(Memory Analyzer Tool) 2024-04-19 15:23:16 +08:00
Guide f852aaf6e1 [docs update]完善redis内存管理 2024-04-18 21:17:50 +08:00
Guide 8d80bad083 [docs update]完善 MySQL索引下推 & Memcached vs Redis 2024-03-31 07:52:30 +08:00
Guide 8e054e6c65 [docs update]格式修正&部分表述完善 2024-03-28 11:23:38 +08:00
Guide 2fefae797c [docs add]redis延时任务 2024-03-23 10:55:07 +08:00
Feng Wei 9abdf15191
Update redis-questions-01.md
在返回——>再返回
2024-03-15 20:30:58 +08:00
Guide f8e9461915 [docs update]完善敏感词过滤介绍 2024-02-01 16:24:41 +08:00
Guide 2620a095fb [docs add]Redis 为什么用跳表实现有序集合 2024-01-31 19:49:55 +08:00
aucub dc0593be9b [docs fix]修复拼写错误 2024-01-13 15:00:49 +08:00
Guide fd23fda9ae [docs update]设计模式和设计原则配图重新绘制 2023-12-30 21:44:04 +08:00
Mr.Hope f9a11d3399 chore: update deps 2023-12-30 17:14:13 +08:00
Guide 8b546b185c [docs update]分布式缓存方案完善 2023-12-28 13:54:48 +08:00
Guide 3f5cfca1ac [docs add&fix]新增一篇练级攻略tag的文章&修正部分描述问题 2023-12-17 15:37:37 +08:00
Guide 974e54ef6d [docs update]添加对 Redis 模块和 RediSearch 的介绍 2023-12-12 12:58:28 +08:00
Guide 5b7c40bdd6 [docs update]Redis Stream 消息队列内容完善+部分笔误完善 2023-11-29 23:27:15 +08:00
Mr.Hope 7ea99a88d7 style: update linter 2023-10-27 06:44:02 +08:00
Guide e96ea425d3 [docs fix]Markdown 格式规范 2023-10-10 14:43:53 +08:00
Guide ada9064ed2 [docs update]修正完善部分描述 2023-09-30 11:01:16 +08:00
Guide 20255f0f05 [docs update]更改部分文章的文末内容 2023-08-07 18:56:33 +08:00
Guide b4c823dc04 [docs update]完善NIO 核心知识总结 2023-06-26 23:56:33 +08:00
Guide 42119f5276 [docs update]partial content improvement 2023-05-31 23:38:14 +08:00
Guide 9d55d3b634 [docs add]食用建议 2023-05-22 10:13:07 +08:00
Mr.Hope 0159cf184d chore: format 2023-05-05 12:39:01 +08:00
Mr.Hope deddd256f3 Merge branch 'main' into tweaks2 2023-05-05 12:38:11 +08:00
Mr.Hope 1614aaa47f chore: tweaks 2023-05-05 12:33:52 +08:00
Mr.Hope 58d36f460a chore: fix typos 2023-05-05 12:02:24 +08:00
Guide 372cb240ca [docs update]exact small-advertisement.snippet.md 2023-04-28 19:27:56 +08:00
Mr.Hope 6bdc809e2f docs: add linter 2023-04-28 17:31:44 +08:00
Guide 053c142747 [docs update]添加redis后台线程+完善AOF 工作基本流程和重写 2023-03-25 16:53:58 +08:00
Guide b2351c877d [docs update]完善Redis事务的介绍 2023-03-24 17:34:58 +08:00
Guide 1f9ffd17b3 [docs update]Redis持久化的内容单独提取成一篇文章 2023-03-23 21:09:30 +08:00
Guide 3729b6f417 [docs update]完善Redis部分的内容 2023-03-23 18:25:39 +08:00
Guide 8c48313596 [docs update]完善 Redis常见面试题总结(上) - Redis 可以做消息队列么? 2023-03-18 18:53:16 +08:00
Guide 9e476c1af1 [docs update]typo 2023-03-14 22:54:16 +08:00
Guide a430800f04 [docs update]picture url 2023-03-10 11:52:00 +08:00
Guide 0d7578c511 [docs fix]图片403问题修复 2023-03-10 00:05:28 +08:00
callmePicacho 5b371f6700
Update redis-questions-01.md
fix typo
2023-03-02 22:49:16 +08:00
Guide 3e8b402cc7 [docs update]完善类加载器详解(重点) 2023-02-28 16:18:55 +08:00
Guide 1b52a03cb4 [docs add] Elasticsearch常见面试题总结 2023-01-29 11:31:13 +08:00
guide c1c66096b9 [docs add] nosql + mongodb 2023-01-12 17:46:41 +08:00
NoctisZhao be91dc00c5
Update redis-questions-01.md
对Redis6.0 多线程的描述有点问题
io-threads-do-reads 并不是开启IO多线程,而是开启IO多线程读

################################ THREADED I/O #################################

# Redis is mostly single threaded, however there are certain threaded
# operations such as UNLINK, slow I/O accesses and other things that are
# performed on side threads.
#
# Now it is also possible to handle Redis clients socket reads and writes
# in different I/O threads. Since especially writing is so slow, normally
# Redis users use pipelining in order to speed up the Redis performances per
# core, and spawn multiple instances in order to scale more. Using I/O
# threads it is possible to easily speedup two times Redis without resorting
# to pipelining nor sharding of the instance.
#
# By default threading is disabled, we suggest enabling it only in machines
# that have at least 4 or more cores, leaving at least one spare core.
# Using more than 8 threads is unlikely to help much. We also recommend using
# threaded I/O only if you actually have performance problems, with Redis
# instances being able to use a quite big percentage of CPU time, otherwise
# there is no point in using this feature.
#
# So for instance if you have a four cores boxes, try to use 2 or 3 I/O
# threads, if you have a 8 cores, try to use 6 threads. In order to
# enable I/O threads use the following configuration directive:
#
# io-threads 4
#
# Setting io-threads to 1 will just use the main thread as usual.
# When I/O threads are enabled, we only use threads for writes, that is
# to thread the write(2) syscall and transfer the client buffers to the
# socket. However it is also possible to enable threading of reads and
# protocol parsing using the following configuration directive, by setting
# it to yes:
#
# io-threads-do-reads no
#
# Usually threading reads doesn't help much.
#
# NOTE 1: This configuration directive cannot be changed at runtime via
# CONFIG SET. Aso this feature currently does not work when SSL is
# enabled.
#
# NOTE 2: If you want to test the Redis speedup using redis-benchmark, make
# sure you also run the benchmark itself in threaded mode, using the
# --threads option to match the number of Redis threads, otherwise you'll not
# be able to notice the improvements.
2022-12-05 12:43:56 +08:00
guide d6957bd534 [docs update]添加 Redis String 类型的底层实现 2022-12-03 11:14:20 +08:00
guide 4ef01cb501 [docs delete]移除一千行 MySQL 学习笔记 2022-11-04 17:55:58 +08:00
liubobo cd9c4e868a
Update redis-questions-01.md 2022-11-02 22:05:23 +08:00
guide ce28705dab [docs update]开源项目推荐 2022-09-25 19:15:34 +08:00
guide 40bc9bbcc8 2022-09-20 2022-09-20 17:48:16 +08:00
guide eb674478e3 Update redis-questions-01.md 2022-09-14 16:22:29 +08:00
guide 5e4e6c7444 Update redis-questions-01.md 2022-09-09 13:56:58 +08:00
guide d349c7e36a [docs update]redis 2022-08-31 11:15:15 +08:00