Skip to content

Commit

Permalink
fix jedis readme file
Browse files Browse the repository at this point in the history
  • Loading branch information
ipipman committed Jan 19, 2021
1 parent 93ddbd1 commit e7bc783
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion springboot-jedis-sample/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ Redis的IO模型主要基于Epoll实现的,不过它还提供了Select和Kqueu
Epoll模型属于诸多IO多路服用模型中的一种,但是相比其他IO多路复用模型技术(Select、Poll等)

**Epoll有诸多优点:**
> - Epoll没有最大并发限制,上线是系统最大文件的数目,具体数目可以 cat /proc/sys/fs/file-max 察看
> - Epoll没有最大并发限制,上线是系统最大文件的数目,具体数目可以 cat /proc/sys/fs/file-max 中查看
> - 效率提升,Epoll最大的优点就是它只管“活跃”的连接,而跟连接总数无关,因此在实际的网络环境中,Epoll的效率就会远远高于Select和Poll;
> - 内存拷贝,Epoll在这点上使用了“共享内存”,这个内存拷贝也省略了;
Expand Down

0 comments on commit e7bc783

Please sign in to comment.