上一页 1 ··· 88 89 90 91 92 93 94 95 96 ··· 186 下一页
摘要: Kubernetes并发控制与数据一致性的实现原理 原创: fisher 华为云技术 2018-09-07 阅读全文
posted @ 2019-01-09 10:57 papering 阅读(359) 评论(0) 推荐(0) 编辑
摘要: 可能有人觉得在业务库的同实例里放消息库或事务记录库,会对业务侵入,业务还要关心这个库,是否一个合理的设计?<br>实际上可以依靠运维的手段来简化开发的侵入,我们的方法是让 DBA 在公司所有 MySQL 实例上预初始化这个库,通过框架层(消息的客户端或事务 RPC 框架)透明地在背后操作这个库,业务 阅读全文
posted @ 2019-01-09 10:43 papering 阅读(227) 评论(0) 推荐(0) 编辑
摘要: a 阅读全文
posted @ 2019-01-08 23:00 papering 阅读(118) 评论(0) 推荐(0) 编辑
摘要: even when a command fails, all the other commands in the queue are processed 单个 Redis 命令的执行是原子性的,但 Redis 没有在事务上增加任何维持原子性的机制,所以 Redis 事务的执行并不是原子性的。 Red 阅读全文
posted @ 2019-01-08 20:19 papering 阅读(269) 评论(0) 推荐(0) 编辑
摘要: https://github.com/antirez/redis/blob/6a6471aad5e4f8d6cbab677b918b14cdee416296/src/t_zset.c 阅读全文
posted @ 2019-01-08 19:25 papering 阅读(468) 评论(0) 推荐(0) 编辑
摘要: 1、通过JNI和c/c++的库组件、其他代码交互 2、java和c不能互通的原因时数据类型问题 Introduction https://docs.oracle.com/javase/8/docs/technotes/guides/jni/spec/intro.html#java_native_in 阅读全文
posted @ 2019-01-08 16:39 papering 阅读(398) 评论(0) 推荐(0) 编辑
摘要: 代码参数里的 payload 是什么意思??? - 简书 https://www.jianshu.com/p/1bf3456a396a http中的payload怎么理解? - 知乎 https://www.zhihu.com/question/26689845 TCP/IP中的Payload概念以 阅读全文
posted @ 2019-01-08 12:09 papering 阅读(1714) 评论(0) 推荐(0) 编辑
摘要: Java反序列化: 基于CommonsCollections4的Gadget分析 welkin 京东安全 5天前 https://mp.weixin.qq.com/s/OqIWUsJe9XV39SPNG3dqWw 阅读全文
posted @ 2019-01-08 10:51 papering 阅读(319) 评论(0) 推荐(0) 编辑
摘要: Golang 序列化方式及对比 - fengfengdiandia的专栏 - CSDN博客 https://blog.csdn.net/fengfengdiandia/article/details/79986237 2018年04月18日 14:02:24 疯疯癫癫 阅读数:2644 版权声明:本 阅读全文
posted @ 2019-01-08 10:40 papering 阅读(1203) 评论(0) 推荐(0) 编辑
摘要: 1、 队列queue和双端队列deque的转换 Queue Method Equivalent Deque Methodadd(e) addLast(e)offer(e) offerLast(e)remove() removeFirst()poll() pollFirst()element() ge 阅读全文
posted @ 2019-01-08 10:33 papering 阅读(201) 评论(0) 推荐(0) 编辑
摘要: 小结: 1、不是同步的,多线程情况下的处理 2、 快速失败、并发修改异常 3、 LinkedList (Java Platform SE 8 ) https://docs.oracle.com/javase/8/docs/api/java/util/LinkedList.html ArrayList 阅读全文
posted @ 2019-01-08 09:49 papering 阅读(171) 评论(0) 推荐(0) 编辑
摘要: 两个广告主同样的广告预算,不同的广告词单价:基于贪心算法的在线算法相对离线算法的竞争率为50% 阅读全文
posted @ 2019-01-07 23:30 papering 阅读(418) 评论(0) 推荐(0) 编辑
摘要: 翻译 搜索 复制 阅读全文
posted @ 2019-01-07 23:07 papering 阅读(150) 评论(0) 推荐(0) 编辑
摘要: Logstash - Wikitech https://wikitech.wikimedia.org/wiki/Logstash 阅读全文
posted @ 2019-01-07 18:47 papering 阅读(201) 评论(0) 推荐(0) 编辑
摘要: 小结: 1、初始化jvm; 2、第一次唤醒java命令不快,后续快; https://github.com/elastic/logstash Advanced: Drip Launcher Drip is a tool that solves the slow JVM startup problem 阅读全文
posted @ 2019-01-07 18:40 papering 阅读(312) 评论(0) 推荐(0) 编辑
摘要: 小结: 1、 日志轮询 log roate 日志文件自动转存和重命名 2、 rotated log独立于其他模块,可以以静态库或者动态库的形式支持二次开发; 3、 [root@d1 ~]# gitlab-ctl startok: run: gitaly: (pid 4356) 1sok: run: 阅读全文
posted @ 2019-01-07 18:34 papering 阅读(1833) 评论(0) 推荐(0) 编辑
摘要: 总结: 1、字符串长度 与 文件追加位置的关系 2、逐行追加优化为批量追加 如果文件已经存在,如下两种情况将会抛出异常: 不可追加文件,则抛出ObjectNotAppendable异常。 可追加文件,但设置的追加位置和文件当前长度不等,则抛出PositionNotEqualToLength异常。 追 阅读全文
posted @ 2019-01-07 17:45 papering 阅读(664) 评论(0) 推荐(0) 编辑
摘要: 构造构造 json 数据 说说你们在项目中遇到过的最糟糕的代码 - V2EX https://www.v2ex.com/t/214099 阅读全文
posted @ 2019-01-07 16:46 papering 阅读(128) 评论(0) 推荐(0) 编辑
摘要: mysql> use ad_detail_page;Reading table information for completion of table and column namesYou can turn off this feature to get a quicker startup wit 阅读全文
posted @ 2019-01-07 14:16 papering 阅读(308) 评论(0) 推荐(0) 编辑
摘要: 使用Intel IPT技术保护您的帐号安全 阅读全文
posted @ 2019-01-06 22:43 papering 阅读(294) 评论(0) 推荐(0) 编辑
摘要: 它是对 ACME(automated certificate management environment) 协议的实现,只要实现了 ACME 协议的客户端都可以跟它交互。 https://mp.weixin.qq.com/s/qig7l-Tc1P6gp_Ldm2bQJg 阅读全文
posted @ 2019-01-06 21:12 papering 阅读(598) 评论(0) 推荐(0) 编辑
摘要: 网络不通:比如代理服务拒绝连接 网络ok,但是数据量过大,传输超时 阅读全文
posted @ 2019-01-04 17:55 papering 阅读(161) 评论(0) 推荐(0) 编辑
摘要: Nginx Upstream timed out (110: Connection timed out) – 运维生存时间 http://www.ttlsa.com/nginx/nginx-upstream-timed-out-110-connection-timed-out/ 在Nginx错误日志 阅读全文
posted @ 2019-01-04 15:35 papering 阅读(1577) 评论(0) 推荐(0) 编辑
摘要: 有硬代码! 阅读全文
posted @ 2019-01-04 15:03 papering 阅读(289) 评论(0) 推荐(0) 编辑
摘要: PHP: php:// - Manual http://www.php.net/manual/zh/wrappers.php.php php:// php:// — 访问各个输入/输出流(I/O streams) php:// php:// — 访问各个输入/输出流(I/O streams) 说明 阅读全文
posted @ 2019-01-04 09:15 papering 阅读(357) 评论(0) 推荐(0) 编辑
摘要: [root@b ~]# traceroute www.test.comtraceroute to www.test.com (134.175.58.66), 30 hops max, 60 byte packets 1 * * * 2 * * * 3 11.220.31.17 (11.220.31. 阅读全文
posted @ 2019-01-03 18:29 papering 阅读(719) 评论(0) 推荐(0) 编辑
摘要: 小结: 1、 因为您对OSI模型的教育中缺少的一点是,它最初设想每个人都在编写应用层(7)API而不是传输层(4)API。应该有像应用程序服务元素之类的 东西,它们可以以标准方式处理文件传输和消息传递等不同应用程序。我认为人们越来越多地转向这种模式,特别是谷歌用go,QUIC驱动,protobufs 阅读全文
posted @ 2019-01-03 09:55 papering 阅读(220) 评论(0) 推荐(0) 编辑
摘要: https://baike.baidu.com/item/ssh/10407 https://baike.baidu.com/item/Telnet/810597 阅读全文
posted @ 2019-01-03 09:35 papering 阅读(824) 评论(0) 推荐(0) 编辑
摘要: 源码 python with open 原理 阅读全文
posted @ 2019-01-02 17:58 papering 阅读(527) 评论(0) 推荐(0) 编辑
摘要: 尽可能减少 数据处理中的内存消耗 服务器成本 时间成本 数据预处理阶段 数据的结构化处理会消耗不必要的内存,比如多行的json字符串构成的文件的逐行字符串转json 在数据的业务层面,逐行结构化,占用接近恒定的内存,增加对内存的控制性 阅读全文
posted @ 2019-01-02 17:28 papering 阅读(366) 评论(0) 推荐(0) 编辑
摘要: /*!50100 PARTITION BY RANGE (TO_DAYS ( create_date ))(PARTITION p201705 VALUES LESS THAN (736846) ENGINE = InnoDB, PARTITION p201706 VALUES LESS THAN 阅读全文
posted @ 2019-01-02 16:31 papering 阅读(384) 评论(0) 推荐(0) 编辑
摘要: tmp 阅读全文
posted @ 2019-01-02 10:51 papering 阅读(143) 评论(0) 推荐(0) 编辑
摘要: Crontab '2>&1 &' 含义 - dosttyy - 博客园 https://www.cnblogs.com/dosttyy/p/4810026.html 阅读全文
posted @ 2019-01-02 10:09 papering 阅读(503) 评论(0) 推荐(0) 编辑
摘要: Can't connect to MySQL server Lost connection to MySQL server during query · Issue #269 · PyMySQL/PyMySQL https://github.com/PyMySQL/PyMySQL/issues/26 阅读全文
posted @ 2019-01-02 09:30 papering 阅读(1238) 评论(0) 推荐(0) 编辑
摘要: 入门教程: 认识 React – React https://zh-hans.reactjs.org/tutorial/tutorial.html#why-immutability-is-important 为什么不可变性在 React 中非常重要 在上一节内容当中,我们建议使用 .slice()  阅读全文
posted @ 2019-01-01 08:40 papering 阅读(571) 评论(0) 推荐(0) 编辑
摘要: q 翻译 搜索 复制 阅读全文
posted @ 2018-12-31 20:53 papering 阅读(99) 评论(0) 推荐(0) 编辑
摘要: Invalid HTTP_HOST header: 'xxx.xx.xxx.xxx:8000'. You may need to add 'xxx.xx' to ALLOWED_HOSTS - buki26的博客 - CSDN博客 https://blog.csdn.net/buki26/artic 阅读全文
posted @ 2018-12-30 12:08 papering 阅读(291) 评论(0) 推荐(0) 编辑
摘要: Redis is loading the dataset in memory During handling of the above exception, another exception occurred: Traceback (most recent call last): File "sy 阅读全文
posted @ 2018-12-30 11:44 papering 阅读(1766) 评论(0) 推荐(0) 编辑
摘要: 阿里云网络系列之经典网络和专有网络-云栖社区-阿里云 https://yq.aliyun.com/articles/58516?spm=a2c4e.11153987.0.0.3c716e8ePMLR34 【阿里云】尊敬的hi1234***@aliyun.com:您的经典网络实例:www.test.c 阅读全文
posted @ 2018-12-30 09:56 papering 阅读(494) 评论(0) 推荐(0) 编辑
摘要: 1、 SOCK_DGRAM UDP packets SOCK_STREAM TCP 不同的协议下的 套接字 数据包 面向数据的 面向连接的 套接字 2、 数据 UDP 文件 TCP https://www.quora.com/Whats-the-difference-between-SOCK_RAW 阅读全文
posted @ 2018-12-29 19:12 papering 阅读(313) 评论(0) 推荐(0) 编辑
上一页 1 ··· 88 89 90 91 92 93 94 95 96 ··· 186 下一页