1
0
mirror of https://github.com/Snailclimb/JavaGuide synced 2025-06-16 18:10:13 +08:00

77 Commits

Author SHA1 Message Date
c483450dcd
Update redis-persistence.md 2023-04-26 23:07:31 +08:00
Guide
a1a79a39fd [docs fix]Heap 初始化的时间复杂度 2023-04-22 10:34:42 +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
f7f434d0c1 [docs add] MySQL Query Cache(查询缓存) 详解 2023-03-16 11:33:45 +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
5956badf13 [docs update]完善 Redis 性能优化,添加 Redis 使用规范
添加使用批量操作提高效率
2023-03-01 14:30:18 +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
guide
696b6d6105 [docs update]精简完善 aqs 的内容 2022-12-15 22:02:20 +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
7ca475434f [docs update]完善redis生产问题的介绍,添加配图 2022-12-03 13:36:18 +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
Guide
609a990315
Merge pull request #1864 from liubobo1996/main
[docs fix]修正 expire 命令的使用
2022-11-04 09:58:37 +08:00
guide
d8f1606c8a [docs add]add some content to make it more perfect 2022-11-03 23:33:32 +08:00
liubobo
cd9c4e868a
Update redis-questions-01.md 2022-11-02 22:05:23 +08:00
guide
c5766c7b51 [docs fix]对 CPU 缓存模型绘图不严谨的地方进行完善 2022-10-23 20:26:02 +08:00
guide
29b7417b02 [docs update]Redis WATCH 命令介绍完善 2022-09-28 11:09:58 +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
guide
976445ad47 [docs update]mybatis面试题完善 2022-08-25 11:25:52 +08:00
guide
066a24755b [docs improve] redis 线程模型&持久化机制 2022-08-24 18:10:02 +08:00
Guide
9ab34c584e
Merge pull request #1802 from Gnatnaituy/patch-2
SDIFF(交集) 错别字修改
2022-08-22 16:11:06 +08:00
guide
737585ba88 [docs update]操作系统面试题 2022-08-22 13:32:09 +08:00
Ravooo
01c5c44333
SDIFF(交集) 错别字修改 2022-08-21 21:54:14 +08:00
guide
8f72d69440 [docs improve]redis部分图片重新绘制 2022-08-21 20:53:45 +08:00
guide
065aeeabe2 [docs update] Java 优质开源实战项目内容完善 2022-08-17 18:28:51 +08:00
guide
d2bb3052df [docs update]typo 2022-08-08 07:16:26 +08:00
guide
dffc5dd94a [docs update]Java并发部分内容重构完善 2022-08-04 21:00:03 +08:00
guide
3e3a1e8888 [docs update]Java基础常见面试题总结(下)内容完善 2022-07-29 16:29:54 +08:00
guide
c6bf96e3a5 [docs add ]Redis 3 种特殊数据结构详解 2022-07-21 20:46:40 +08:00
guide
a77eb04740 [docs update]redis 内容拆分&数据结构部分内容完善 2022-07-20 22:27:00 +08:00
guide
a96400c76d [docs update] redis 数据结构部分 2022-07-20 19:37:29 +08:00
guide
e7b6ee630c [docs update]redis数据结构面试题完善 2022-07-20 16:24:50 +08:00
guide
6d4586a62e [docs update]redis数据类型分为2篇 2022-07-20 15:08:15 +08:00
guide
752fc401cb Update redis-data-structures.md 2022-07-19 19:59:02 +08:00
guide
eaf56cbe49 [docs update]redis 数据结构完善 2022-07-18 18:43:07 +08:00
guide
a600b8d8ca [docs improve]seo优化&文章标题优化 2022-07-18 09:24:18 +08:00
guide
83efb36fb5 [docs feat]网站排版&样式完善 2022-06-13 13:14:26 +08:00