1
0
mirror of https://github.com/Snailclimb/JavaGuide synced 2025-06-20 22:17:09 +08:00

5244 Commits

Author SHA1 Message Date
Freeze
7b45305b04
Update operating-system-basic-questions-01.md 2023-01-22 11:11:14 +08:00
纪卓志
15d6ea12d7
Update jmm.md
According to https://download.oracle.com/otn-pub/jcp/memory_model-1.0-pfd-spec-oth-JSpec/memory_model-1_0-pfd-spec.pdf, giving a formal definition of Java Memory Model.
2023-01-17 23:20:48 +08:00
Guide
3bb366ad35
Merge pull request #1896 from xtexChooser/patch-1
fix typo
2023-01-17 20:47:59 +08:00
Guide
b15d4a639c
Merge pull request #1895 from cckkrr/patch-1
Update java-basic-questions-01.md
2023-01-17 20:47:44 +08:00
Guide
af19a6faca
Merge pull request #1893 from Konjacor/patch-1
修改一个错别字
2023-01-17 20:45:37 +08:00
Guide
74e2b5b47d
Merge pull request #1892 from Jarvan-Song/main
添加ArrayList随机访问标识RandomAccess
2023-01-17 20:44:47 +08:00
xtexChooser
2a1291a29a
fix typo 2023-01-16 13:08:19 +08:00
cckkrr
017a99aef3
Update java-basic-questions-01.md
是否笔误呢
2023-01-16 02:32:11 +08:00
Konjacor
5d1b0f0e05
修改一个错别字
212行 对象投 -> 对象头
2023-01-15 14:08:47 +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
Jarvan-Song
be26d790eb
添加ArrayList随机访问标识
添加ArrayList随机访问标识
2023-01-13 15:25:22 +08:00
Guide
4cac52efc9 Update readme.md 2023-01-12 21:39:44 +08:00
guide
c1c66096b9 [docs add] nosql + mongodb 2023-01-12 17:46:41 +08:00
Guide
2ac54e3d11
Merge pull request #1888 from ljgong007/main
修改拼写错误和重复
2023-01-02 21:01:25 +08:00
ljgong007
5766be1243
修改拼写错误和重复 2023-01-02 13:01:04 +01:00
guide
7654d42ab9 [docs add]软件工程简明教程 2022-12-30 13:45:11 +08:00
Guide
ce4a21f9b6
Merge pull request #1887 from Yue-plus/patch-1
一个拼写错误
2022-12-26 14:40:50 +08:00
Yue_plus
bfc7ad1a30
再补个句号 2022-12-24 14:10:09 +08:00
Yue_plus
942ac853b9
一个拼写错误 2022-12-24 14:08:41 +08:00
Guide
3d704816bc
Merge pull request #1886 from KallenBlue/patch-1
更改了一个错字
2022-12-19 23:28:48 +08:00
Kallen
be15297c88
更改了一个错字
很喜欢笔者的故事,很有趣,也很鼓舞人
2022-12-19 21:03:23 +08:00
guide
afbb5b7168 [dcos update]Maven插件介绍+Maven文章推荐 2022-12-18 13:47:15 +08:00
guide
3f14551734 [docs add]Maven核心概念总结 2022-12-16 22:32:28 +08:00
guide
a06a408f96 [docs update]添加对移位运算符的基本介绍(重要) 2022-12-16 10:38:42 +08:00
guide
9f66ae82de [docs update]完善Java 并发常见面试题总结(下)的内容 2022-12-15 22:42:21 +08:00
guide
696b6d6105 [docs update]精简完善 aqs 的内容 2022-12-15 22:02:20 +08:00
Guide
0c5f2ed756
Merge pull request #1885 from 15168387900/patch-3
Update rpc-intro.md
2022-12-13 20:33:43 +08:00
Guide
d048833d81
Merge pull request #1884 from 15168387900/patch-2
Update io-basis.md
2022-12-13 20:22:55 +08:00
15168387900
23e7270f51
Update rpc-intro.md 2022-12-13 17:45:58 +08:00
15168387900
ef93cdc15f
Update io-basis.md 2022-12-11 18:36:06 +08:00
Guide
7673b7d2a5
Merge pull request #1882 from NoctisZhao/patch-2
Update redis-questions-01.md
2022-12-06 11:01:35 +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
fe85a93810 Merge branch 'main' of github.com:Snailclimb/JavaGuide 2022-11-22 22:35:38 +08:00
guide
c5aeba84a6 [docs feat]添加图标 2022-11-22 22:32:15 +08:00
Guide
c3b4e411aa
Merge pull request #1876 from shark-ctrl/shark-design
修复 "Bean 的作用域有哪些" 符号问题
2022-11-22 12:38:45 +08:00
guide
5d36223780 [docs update]Paxos 算法笔记完善 2022-11-22 10:42:38 +08:00
fjut_shark
8a371958e8 修复 "Bean 的作用域有哪些" 符号 2022-11-22 09:36:06 +08:00
Guide
831cb7b93c
Merge pull request #1872 from shark-ctrl/shark-chili
修复 "AspectJ 定义的通知类型有哪些?" 排版问题
2022-11-21 22:19:44 +08:00
Guide
cf893aded4
Merge pull request #1870 from dd201702/patch-1
去掉第23行重复的“这个”
2022-11-21 22:10:49 +08:00
fjut_shark
094ad8f06e 修复 "PlatformTransactionManager:事务管理接口" 显示问题 2022-11-20 15:39:42 +08:00
fjut_shark
1d3bcdeab3 修复 "AspectJ 定义的通知类型有哪些?" 排版问题 2022-11-20 14:37:51 +08:00
guide
4132cc2bd4 [docs update]数据库并发一致性问题添加配图帮助理解 2022-11-19 11:48:56 +08:00
dd201702
5c2de369c0
去掉第23行重复的“这个” 2022-11-17 19:41:32 +08:00
guide
c338579e36 [docs update]百度统计 2022-11-16 07:46:27 +08:00
guide
a271e56e63 Merge branch 'main' of github.com:Snailclimb/JavaGuide 2022-11-15 20:25:52 +08:00
guide
c967c44b8b [docs feat]vuepress 主题升级 2022-11-15 20:25:47 +08:00