1 2 3 4 5 ··· 29 下一页

2023年12月28日

Git LFS 操作指南

摘要: https://zzz.buzz/zh/2016/04/19/the-guide-to-git-lfs/ 下载 Windows / Cygwin https://git-lfs.github.com/ (Cygwin 下使用 Git LFS 请参考后文相关注意事项) macOS brew insta 阅读全文

posted @ 2023-12-28 00:48 alex.shu 阅读(204) 评论(0) 推荐(0) 编辑

2023年6月26日

转载: redis中的bigkey问题

摘要: reference: https://www.modb.pro/db/459810 什么是bigkey bigkey就是redis key/value体系中的大value问题。我们知道redis的底层数据存储结构中,有多种数据结构的实现。 String: 简单动态字符串 List: 双向链表、压缩列 阅读全文

posted @ 2023-06-26 19:28 alex.shu 阅读(38) 评论(0) 推荐(0) 编辑

2023年3月20日

go unit test 单个文件

摘要: go test -v task/timer/task_sender_test.go task/timer/task_sender.go task/timer/errors.go task/timer/task_sender_client.go task/timer/task_common.go ta 阅读全文

posted @ 2023-03-20 17:31 alex.shu 阅读(7) 评论(0) 推荐(0) 编辑

2022年5月27日

vscode python 跳转

摘要: 经过一番查阅资料,了解到这样一组介绍: Jedi 是一个可以在 IDEs 或者编辑器中使用的 Python 代码自动补齐和静态分析工具。它的历史重点是自动完成,但现在也进行静态分析。 Jedi 好用并且快速, 可以搜索相关的名称并列出 Python 文件中的所有名称并推断它们。 Jedi 理解 do 阅读全文

posted @ 2022-05-27 20:44 alex.shu 阅读(2361) 评论(0) 推荐(1) 编辑

2021年5月5日

如何画好系统架构图

摘要: 转载: https://www.cnblogs.com/qinlulu/p/13204808.html 导读:技术传播的价值,不仅仅体现在通过商业化产品和开源项目来缩短我们构建应用的路径,加速业务的上线速率,也体现在优秀工程师在工作效率提升、产品性能优化和用户体验改善等经验方面的分享,以提高我们的专 阅读全文

posted @ 2021-05-05 11:28 alex.shu 阅读(830) 评论(0) 推荐(0) 编辑

2020年11月2日

How can I find the header files of the C programming language in Linux?

摘要: -fsyntax-only in addition to get it not to create any output (it will still tell you if your program has errors). Example (Linux, gcc-4.7):echo '#incl 阅读全文

posted @ 2020-11-02 15:31 alex.shu 阅读(47) 评论(0) 推荐(0) 编辑

2019年8月10日

redis 订阅与发布

摘要: Reference: https://redisbook.readthedocs.io/en/latest/feature/pubsub.html Redis 的 SUBSCRIBE 命令可以让客户端订阅任意数量的频道, 每当有新信息发送到被订阅的频道时, 信息就会被发送给所有订阅指定频道的客户端。 阅读全文

posted @ 2019-08-10 01:24 alex.shu 阅读(243) 评论(0) 推荐(0) 编辑

2019年7月24日

Zookeeper——一致性协议:Zab协议

摘要: Reference: https://www.jianshu.com/p/2bceacd60b8a 什么是Zab协议 Zab 协议的作用 Zab 协议原理 Zab 协议核心 Zab 协议内容 原子广播 崩溃恢复 如何保证数据一致性 Zab 协议如何数据同步 如何处理需要丢弃的 Proposal Za 阅读全文

posted @ 2019-07-24 20:36 alex.shu 阅读(1155) 评论(1) 推荐(0) 编辑

2019年7月9日

Recursion

摘要: Reference: http://web.mit.edu/6.005/www/fa16/classes/14-recursion/ Objectives After today’s class, you should: be able to decompose a recursive proble 阅读全文

posted @ 2019-07-09 14:54 alex.shu 阅读(405) 评论(0) 推荐(0) 编辑

2019年7月5日

MySQL数据库事务各隔离级别加锁情况--read committed && MVCC

摘要: Reference: https://www.imooc.com/article/17290 可以很负责人的跟大家说,MySQL 中的此隔离级别不单单是通过加锁实现的,实际上还有repeatable read 隔离级别,其实这两个隔离级别效果的实现还需要一个辅助,这个辅助就是MVCC-多版本并发控制 阅读全文

posted @ 2019-07-05 10:56 alex.shu 阅读(2260) 评论(3) 推荐(1) 编辑

1 2 3 4 5 ··· 29 下一页

导航