ICode9

精准搜索请尝试: 精确搜索
  • MySQL的WAL(Write-Ahead Logging)机制2022-06-12 10:02:23

    MySQL 里经常说到的 WAL技术,也就是先写日志,再写磁盘。 当内存数据页跟磁盘数据页内容不一致的时候,我们成这个内存页为“脏页”。内存数据写入磁盘后,内存和磁盘上的数据页内容就一致了,称为“干净页”。 MySQL 从 内存更新到磁盘的过程,称为刷脏页的过程(flush)。 InnoDB 刷脏页的时

  • Non-IID data and Continual Learning processes in Federated Learning: A long road ahead 论文阅读2022-01-01 16:59:38

    论文地址点这里 今天来看一篇在实际背景下,联邦学习和持续学习的意义以及针对于数据异构问题的相关分析。 一. 介绍 人们日常生活主要的计算机器是智能手机和平板电脑,这些设备手机了很多有用的数据。易于用于训练简化日常使用的个性化算法。在这种情况下,仅在一个设备中记录的

  • 段恢复与写前日志Segment-Based Recovery Write-ahead logging revisited2021-11-21 09:33:59

    2021202210011 王占坤 摘要 本论文重新讨论了写前日志,然后去掉了两个核心假设: 页面是恢复单元 时间戳(lns)应该存储在每个页面上。 恢复单个应用程序级对象(而不是页面)简化了对对象大小与页面大小不同的系统的处理。我们将展示如何在页面上消除对lsn的需要,从而为大型对象启用D

  • Type Ahead2021-10-15 16:00:17

    Reference Introduction Key Words Requirements Functional Non-Functional Estimation Traffic Storage High Level Design Draw IO source Follow-up

  • [其他] 英语抽查押题2021-09-09 20:33:21

    题文无关 WEEK 2 an item on the agenda be high on / top of the agenda agree on sth disagree with sb reach an agreement with sb ahead of time go ahead go to sb' s aid aid sb in/with sth be aimed at on the air up in the air be on the air put on airs a dete

  • picoCTF2021 GET aHEAD2021-04-05 21:57:42

    题目提示: Hints1:Maybe you have more than 2 choices Hints2:Check out tools like Burpsuite to modify your requests and look at the responses 用bp抓包会发现Choose Red用的是GET方法,Choose Blue用的是POST方法(其实源码里也能看出来),结合Hints猜测可能要用其它的请求

  • mysql8.0源码解析 InnoDB redo log日志 写 write ahead 巧用pageCache实现高效写2020-12-04 21:02:51

    pageCache背景 当往磁盘上写文件时,如果文件内容还没有被缓存或者被置换出去了,在内存里不存在对应的page cache,则需要先将对应page的内容从磁盘上读到内存里,修改要写入的数据,然后再将整个page写回到磁盘;在这种情况下,会有一次额外的读IO开销,IO的性能会有一定的损失。 mysql的整

  • ALG 4-1: Interval Scheduling - The Greedy Algorithm Stays Ahead (间隔调度-贪婪算法的优势)2020-11-16 12:01:42

                         目标: 找出相互兼容的工作的最大子集                    “贪婪模式“。逐个考虑工作。接受这一项工作,只要它与已经接受的工作相容。     [最早开始时间] 按sj的升序考虑工作。       [最早完成时间] 按fj的升序考虑工

  • 《剑指offer》第五十七题I:和为s的两个数字2020-04-08 16:56:55

    // 面试题57(一):和为s的两个数字 // 题目:输入一个递增排序的数组和一个数字s,在数组中查找两个数,使得它们 // 的和正好是s。如果有多对数字的和等于s,输出任意一对即可。 #include <cstdio> bool FindNumbersWithSum(int data[], int length, int sum, int

  • zookeeper 极客时间课程笔记 042020-03-12 20:37:06

    write Ahead Logging = WAL      

  • LeetCode算法题--删除排序数组中的重复项2020-03-01 09:04:08

    题目要求 给定一个排序数组,你需要在原地删除重复出现的元素,使得每个元素只出现一次,返回移除后数组的新长度。 不要使用额外的数组空间,你必须在原地修改输入数组并在使用 O(1) 额外空间的条件下完成。 示例一: 给定数组 nums = [1,1,2], 函数应该返回新的长度 2, 并且原数组

  • Dynamic Access Control2019-09-12 15:55:27

    DAC (DynamicAccessControl) let's take a look at the different pieces that make up Dynamic Access Control. The first one is going to be Claim types. Now, once you've create a Claim type, you then put that into the Resource properties. Resource pr

  • Lodging in May2019-08-01 22:40:16

    原文链接:http://www.cnblogs.com/kangshifu/archive/2008/11/21/1338688.html 来源:http://www.goaround.org/travel-australia/249058.htm   Q:After having a cruise cancelled out from underneath us, we were finally able to use our skymiles to

  • 14.6.3.5 Configuring InnoDB Buffer Pool Prefetchin2019-02-27 22:55:49

    A read-ahead request is an I/O request to prefetch multiple pages in the buffer pool asynchronously, in anticipation that these pages will be needed soon. The requests bring in all the pages in one extent. InnoDB uses two read-ahead algorithms to improve

专注分享技术,共同学习,共同进步。侵权联系[81616952@qq.com]

Copyright (C)ICode9.com, All Rights Reserved.

ICode9版权所有