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

380 Commits

Author SHA1 Message Date
Guide
12cd4a2be9 [docs add]程序员的技术成长战略 2023-02-23 12:45:00 +08:00
Guide
cb97fada87 [docs add]网络攻击常见手段总结(安全) 2023-02-19 17:28:45 +08:00
Guide
e129b380ce
Merge pull request #1926 from zbzbzzz/main
多了个分号
2023-02-17 14:35:46 +08:00
Guide
accea3b857
Merge pull request #1925 from lalalaxjy/patch-1
Update mysql-questions-01.md
2023-02-17 14:34:57 +08:00
Guide
2635879fe1 [docs add]SQL语法基础知识总结 + SQL常见面试题总结 2023-02-17 13:40:22 +08:00
zbzbzzz
a3cc1db59b
多了个分号 2023-02-16 20:15:53 +08:00
lalalaxjy
296f76fa4e
Update mysql-questions-01.md 2023-02-16 16:33:51 +08:00
Guide
01d8de7380 [docs update]完善MySQL索引详解
添加索引类型总结、完善正确使用索引的一些建议
2023-02-14 10:05:36 +08:00
Guide
c706bebb0d [docs update]完善线程池相关的内容 2023-02-07 11:03:15 +08:00
Guide
37e91ad9ce [docs update]数据库部分内容描述 2023-02-02 17:54:04 +08:00
Guide
026eb7e7e7 Update mysql-questions-01.md 2023-02-02 12:44:38 +08:00
Guide
c40444e5a2 [docs update]添加自增锁介绍 2023-02-01 15:16:18 +08:00
Guide
d655d36c90 [docs update]typo 2023-01-31 22:45:49 +08:00
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