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

367 Commits

Author SHA1 Message Date
Guide
96a46f9b05 [docs add]乐观锁和悲观锁详解 2023-01-31 16:27:36 +08:00
Guide
07cbd4e875 [docs update]typo 2023-01-30 23:07:18 +08:00
Guide
1b52a03cb4 [docs add] Elasticsearch常见面试题总结 2023-01-29 11:31:13 +08:00
Guide
48eab7d0ba [docs add]MySQL执行计划分析 2023-01-14 18:33:11 +08:00
Guide
653d7b59d6 [docs update] 添加并发事务的控制方式、MySQL 日志,完善 MySQL 查询缓存
添加内容: 并发事务的控制方式、MySQL 日志
完善内容:MySQL 查询缓存
2023-01-14 11:55:21 +08:00
Guide
a4cb5237d9 [docs update]完善MyISAM 和 InnoDB的对比介绍 2023-01-14 08:28:41 +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
4132cc2bd4 [docs update]数据库并发一致性问题添加配图帮助理解 2022-11-19 11:48:56 +08:00
guide
c967c44b8b [docs feat]vuepress 主题升级 2022-11-15 20:25:47 +08:00
guide
e24144ae38 [docs update]优质 Java 开源项目推荐第13期 2022-11-05 18:24:11 +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
guide
dd43c8f3cf Update mysql-questions-01.md 2022-11-03 19:39:35 +08:00
guide
1816abea3b [docs update]mysql 索引内容部分描述完善 2022-11-03 18:01:07 +08:00
liubobo
cd9c4e868a
Update redis-questions-01.md 2022-11-02 22:05:23 +08:00
liubobo
960fa98ab2
Update mysql-questions-01.md 2022-11-01 11:26:31 +08:00
guide
c5766c7b51 [docs fix]对 CPU 缓存模型绘图不严谨的地方进行完善 2022-10-23 20:26:02 +08:00
guide
7b56b9ee01 [docs update]常见的 SQL 优化手段 2022-10-12 10:25:34 +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
ImCaO
88e0948404
Update mysql-questions-01.md 2022-09-21 21:10:01 +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
e29154b0e8 [docs update]Web 实时消息推送详解原文地址 2022-09-01 11:43:35 +08:00
guide
d349c7e36a [docs update]redis 2022-08-31 11:15:15 +08:00
Guide
57bc0dbc77
Merge pull request #1807 from Carbda/patch-3
在网页里面的格式有点问题,文字被拉长了,markdown里面加一行就可以解决
2022-08-26 12:43:07 +08:00
guide
e314ff8ff5 Update mysql-high-performance-optimization-specification-recommendations.md 2022-08-26 12:00:32 +08:00
guide
8af31477f9 [docs update]MySQL高性能优化规范建议总结 2022-08-26 11:09:09 +08:00
Carbda
08de6e2f3e
在网页里面的格式有点问题,文字被拉长了,markdown里面加一行就可以解决
在网页里面的格式有点问题,文字被拉长了,markdown里面加一行就可以解决
2022-08-25 23:14:50 +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
kuluqi163
81878f36f1
Update mysql-questions-01.md
个人认为433行“非一致性锁定读”应该是笔误,应改为“一致性非锁定读”
435、436行“非一致性读”,应该改为“一致性非锁定读”或“非锁定读”
2022-08-23 11:46:55 +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
b7f9f90768
Merge pull request #1792 from haonange1314/patch-1
Update a-thousand-lines-of-mysql-study-notes.md
2022-08-19 12:45:16 +08:00
guide
065aeeabe2 [docs update] Java 优质开源实战项目内容完善 2022-08-17 18:28:51 +08:00
奋斗的小果
f8d67637cc
Update a-thousand-lines-of-mysql-study-notes.md
mysql连接命令的[地址]是-h
2022-08-17 09:22:36 +08:00
guide
d2bb3052df [docs update]typo 2022-08-08 07:16:26 +08:00
yuezang3
386cfe7592
小小的文字修改
更新的括号里面觉得改为修改会不会好一点
2022-08-06 17:27:31 +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